matplotlib 缺少样式模块?
Missing styles module from matplotlib?
尝试在 matplotlib 中设置 "styles" 模块时,我得到如下 AttributeError:
import matplotlib.pyplot as plt
plt.styles.use("ggplot")
Traceback (most recent call last):
File "<pyshell#2>", line 1, in <module>
plt.styles.use("ggplot")
AttributeError: 'module' object has no attribute 'styles'
这是为什么?我该如何解决?
我正在使用 python 3 64 位
编辑:
我使用
得到同样的错误
plt.style.use("ggplot")
子包是style
,不是styles
。可以找到文档 here。所以使用
import matplotlib.pyplot as plt
plt.style.use('ggplot')
尝试在 matplotlib 中设置 "styles" 模块时,我得到如下 AttributeError:
import matplotlib.pyplot as plt
plt.styles.use("ggplot")
Traceback (most recent call last):
File "<pyshell#2>", line 1, in <module>
plt.styles.use("ggplot")
AttributeError: 'module' object has no attribute 'styles'
这是为什么?我该如何解决? 我正在使用 python 3 64 位
编辑: 我使用
得到同样的错误plt.style.use("ggplot")
子包是style
,不是styles
。可以找到文档 here。所以使用
import matplotlib.pyplot as plt
plt.style.use('ggplot')