Python---matplotlib庫

import matplotlib.pyplot as plt 多圖設置 fig = plt.figure() fig = plt.figure(size = (3, 3)) #指定圖的大小 ax1 = fig.add_subplot(2, 3, x) #將圖畫在2*3矩陣的第x個位置 #而後畫圖 ax1.plot() ax1.bar() ax1.scatter() ax1.hist() ax1
相關文章
相關標籤/搜索