我想在Python中更改默认图的外观,因此我在当前工作目录(Windows 7)中创建了文件 matplotlibrc 。文件被加载 -
import matplotlib as mp
print('Config. file loaded from:', mp.matplotlib_fname())
返回
Config. file loaded from: C:\Users\mato\Documents\Python_Scripts\matplotlibrc
然而,情节不受影响。
简单的代码:
import matplotlib.pyplot as plt
x = [1,2,3,4,5]
plt.plot(x)
使用 matplotlibrc 文件,如下所示:
lines.linestyle : --
axes.grid : True
生成带有实线的图,图中没有网格。我错过了什么?
答案 0 :(得分:1)
我遇到了同样的问题,解决方法是简单地取消注释命令。(在想要更改的参数之前删除“#”) 噢,伙计!