python pandas DataFrame subplot in columns and rows

后端 未结 2 1068
予麋鹿
予麋鹿 2020-12-20 12:18

I would like to produce a subplot from data 4 column DataFrame into 2 rows and 2 columns

df =pd.DataFrame(np.random.randn(6,4),index=pd.date_range(\'1/1/2000         


        
2条回答
  •  孤城傲影
    2020-12-20 13:05

    In current versions of Pandas, DataFrame.plot features the layout keyword for this purpose.

    df.plot(subplots=True, layout=(2,2), ...)
    

提交回复
热议问题