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

问题描述 投票:0回答:1

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

但是,我见过这段代码:matplotlib.pyplot.style.use('seaborn')

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

matplotlib
1个回答
1
投票

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

from matplotlib import style

上面的一行也出现在pyplot.py内。 style因此在pyplot的命名空间,你可以做到

matplotlib.pyplot.style.use("some_style")
© www.soinside.com 2019 - 2024. All rights reserved.