“Matplotlib -Diagramm in der zweiten Achse” Code-Antworten

zweite y Achse 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

Matplotlib -Diagramm in der zweiten Achse

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

Ähnliche Antworten wie “Matplotlib -Diagramm in der zweiten Achse”

Fragen ähnlich wie “Matplotlib -Diagramm in der zweiten Achse”

Weitere verwandte Antworten zu “Matplotlib -Diagramm in der zweiten Achse” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen