14

データ 4 列の DataFrame から 2 行 2 列のサブプロットを作成したいと思います

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

ただし、以下は4行1列のプロットになります

 df.plot(use_index=False, title=f, subplots=True, sharey=True, figsize=(8, 6))

ありがとう。

4

2 に答える 2

11

Pandas の現在のバージョンでは、この目的のためにキーワードをDataFrame.plot備えています。layout

df.plot(subplots=True, layout=(2,2), ...)
于 2015-05-02T07:21:27.757 に答える