设置pandas plot配置默认值

时间:2018-01-06 16:06:14

标签: python pandas

有没有办法设置默认配置,例如使用var x = Directory.GetFiles(@"C:\Test\", "*.txt"); 方法时figsize?我正在寻找像pandas.DataFrame.plot

这样的东西

1 个答案:

答案 0 :(得分:0)

只需在调用plot方法之前使用它:

# required on Jupiter Notebook
%matplotlib inline

import matplotlib as mpl
width, height = 15, 6 # example with 15x6 inches
mpl.rcParams['figure.figsize'] = [width, height]

有关详细信息,请参见this post