阅读matplotlib文档,看起来样式是matplotlib(matplotlib.style)的模块。
但是,我见过这段代码:matplotlib.pyplot.style.use('seaborn')
我不明白样式模块如何与matplotlib.pyplot模块相关联(并从中调用)。
Matplotlib有一个模块style
。这可以像导入一样导入
from matplotlib import style
上面的一行也出现在pyplot.py
内。
style
因此在pyplot
的命名空间,你可以做到
matplotlib.pyplot.style.use("some_style")