python wykres (po usunięciu)
Data utworzenia: 2024-11-27 12:23:17
import matplotlib.pyplot as plt
import numpy as np
#plot1
x = np.array([0, 1, 2, 3])
y = np.array([3, 8, 1, 10])
plt.subplot(2,2,1)
plt.plot(x,y, marker="*", ms=10, mec="red", mfc="yellow")
#plot 2
x1 = np.array([0, 1, 2, 3])
y1 = np.array([10, 20, 30, 40])
plt.subplot(2,2,3)
plt.plot(x1,y1, marker="o", ms=15, mec="green", mfc="blue")
plt.show()
Powrót