- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我用过 stem_graphic
绘制茎叶图并将其保存为 pdf 但在尝试输入标题时其给出错误:Figure object have no attribute set_title
.
ax, b=stem_graphic(mileage['disp'])
ax.set_title("Vicky")
This is the error
Traceback (most recent call last):
File "<pyshell#214>", line 1, in <module>
ax.set_title("Vicky")
AttributeError: 'Figure' object has no attribute 'set_title'
最佳答案
它看起来像你的 stem_graphic
函数返回 matplotlib.figure
对象,所以你应该使用 suptitle()
添加标题的方法。
尝试:
fig, b = stem_graphic(mileage['disp'])
fig.suptitle("Vicky")
关于matplotlib - Figure 对象没有属性 set_title,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44811302/
当我设置窗口标题时,标题被设置回它对应的文件名。 class myniceApp(App): global Window def build(self): Window
我用过 stem_graphic绘制茎叶图并将其保存为 pdf 但在尝试输入标题时其给出错误:Figure object have no attribute set_title . ax, b=ste
我需要使用 set_title() 为绘图绘制标题,其背景以一定程度的透明度显示。 我已经尝试了三种方法(一种取自 this answer ),但似乎都不起作用。它们要么使文本的字体或边缘透明,但不使
这是我正在使用的代码。这是一个可以复制和粘贴的独立代码。 import pandas as pd import numpy as np import seaborn as sns import mat
我正在尝试重命名我的应用程序主窗口的标题,但在尝试重命名时,名称被截断了。我试图查看这是否是转换问题,但我真的找不到为什么会这样。试试这个小程序。点击取消以在标题栏中查看默认的应用程序名称,但如果您选
我首先使用以下代码创建了一个线图: plot = sns.lineplot(data=tips, x="sex", y="tip",
我是一名优秀的程序员,十分优秀!