“garis horizontal plot python” Kode Jawaban

garis horizontal matplotlib python

import matplotlib.pyplot as plt
plt.axhline(0)
Tremendous Enceladus

Garis horizontal untuk pyplot

import matplotlib.pyplot as plt
import numpy as np

x = np.linspace(1, 21, 200)
y = np.exp(-x)

fig, ax = plt.subplots()
ax.plot(x, y)
ax.hlines(y=0.2, xmin=4, xmax=20, linewidth=2, color='r')

plt.show()
Helpless Hawk

plot garis horizontal dalam python

This will plot y=0 horizontal line , 
import matplotlib.pyplot as plt
plt.axhline(0)
Hutch Polecat

garis horizontal plot python

import matplotlib.pyplot as plt
series.plot(kind='barh')
plt.show()
M.U

cara merencanakan kines horizontak mltiple di matplotlib

[ax.axhiline(y=i, linestyle='--') for i in [150,100,200,300]]
Naughty Nightingale

Jawaban yang mirip dengan “garis horizontal plot python”

Pertanyaan yang mirip dengan “garis horizontal plot python”

Lebih banyak jawaban terkait untuk “garis horizontal plot python” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya