阅读matplotlib文档,看起来样式是matplotlib(matplotlib.style)的模块。
但是,我看过这段代码: matplotlib.pyplot.style.use(' seaborn&#39)
我不明白样式模块如何与matplotlib.pyplot模块相关联(并从中调用)。
答案 0 :(得分:1)
Matplotlib有一个模块style
。这可以像
from matplotlib import style
上述行也出现在pyplot.py
内
style
因此位于pyplot
的命名空间中,您可以
matplotlib.pyplot.style.use("some_style")