“línea horizontal de la trama de Python” Código de respuesta

línea horizontal matplotlib python

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

línea horizontal para 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

Trabajo de la línea horizontal en Python

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

línea horizontal de la trama de Python

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

Cómo trazar mltiple horizontak kines en matplotlib

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

Respuestas similares a “línea horizontal de la trama de Python”

Preguntas similares a “línea horizontal de la trama de Python”

Más respuestas relacionadas con “línea horizontal de la trama de Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código