“gráfico matplotlib en el segundo eje” Código de respuesta

Segundo y eje y matplotlib

import numpy as np
import matplotlib.pyplot as plt
x = np.arange(0, 10, 0.1)
y1 = 0.05 * x**2
y2 = -1 *y1

fig, ax1 = plt.subplots()

ax2 = ax1.twinx()
ax1.plot(x, y1, 'g-')
ax2.plot(x, y2, 'b-')

ax1.set_xlabel('X data')
ax1.set_ylabel('Y1 data', color='g')
ax2.set_ylabel('Y2 data', color='b')

plt.show()
Misty Macaw

gráfico matplotlib en el segundo eje

fig,ax = plt.subplots()
ax.plot(y1)
ax2=ax.twinx()
ax2.plot(y2)
plt.show()
Manolis Vouvis

Respuestas similares a “gráfico matplotlib en el segundo eje”

Preguntas similares a “gráfico matplotlib en el segundo eje”

Más respuestas relacionadas con “gráfico matplotlib en el segundo eje” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código