Plot banyak figure dalam window sama (Python)
#subplot -> banyak plot dalam figure sama
fig, ax= plt.subplots(2, 3, figsize=(15, 10))
ax[0, 0].hist(numbers, bins=25, density=1);
ax[0, 2].hist(numbers, bins=25, density=1);
ax[1, 1].scatter(x,y, c='r', s=10) ;
ax[1, 1].axis('equal');
ax[1, 2].hist(numbers, bins=25, density=1);
Komentar
Posting Komentar