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