web-dev-qa-db-ja.com

jupyterノートブックでpandas.DataFrame.plotの画像サイズを増やす方法は?

関数_pandas.DataFrame.plot_の出力イメージのサイズを変更するにはどうすればよいですか?

私は試した:

plt.figure (figsize=(10,5))

そして

_%matplotlib notebook_

しかし、どれも機能しません。

26
mommomonthewind

これを試して:

_df = pd.DataFrame({"a":[1,2],"b":[1,2]})
df.plot(figsize=(5,5));
_

enter image description here

_df.plot(figsize=(10,5));
_

enter image description here

[〜#〜]編集[〜#〜]

inches paramが指定されていない限り、figsize=(10,5)のサイズはdpiで指定されます(ピクセル単位の場合)。

https://matplotlib.org/api/_as_gen/matplotlib.pyplot.figure.html#matplotlib.pyplot.figure

57

ノートブック全体に変更を加えたい場合:

import matplotlib.pyplot as plt
%matplotlib inline
plt.rcParams["figure.figsize"] = [10, 5]
8
black_fm