样式是matplotlib或matplotlib.pyplot的模块吗?

时间:2017-12-20 05:30:40

标签: matplotlib

阅读matplotlib文档,看起来样式是matplotlib(matplotlib.style)的模块。

但是,我看过这段代码: matplotlib.pyplot.style.use(' seaborn&#39)

我不明白样式模块如何与matplotlib.pyplot模块相关联(并从中调用)。

1 个答案:

答案 0 :(得分:1)

Matplotlib有一个模块style。这可以像

一样导入
from matplotlib import style

上述行也出现在pyplot.py style因此位于pyplot 的命名空间中,您可以

matplotlib.pyplot.style.use("some_style")