报错场景&原因
在界面设计时,想实时更新用matplotlib绘制的图像,即会一次次的调用plot函数,这样就会重复地向groupbox里面添加布局,但是一个容器只能有一个布局,因此会报错
def __init__(self):super(weibo_search_logic, self).__init__()self.setupUi(self)self.setWindowIcon(QIcon(r"resources/icon.ico"))self.run()def plot(self,li): result_dict = li[-1]negative,medium,positive = result_dict["负"],result_dict["中"],result_dict["正"]self.gridlayout2 = QGridLayout(self.groupBox) # 继承容器groupBoxself.F2 = MyFigure(width=4, height=5, dpi=100)# 将横、纵坐标轴标准化处理,确保饼图是一个正圆,否则为椭圆self.F2.axes = self.F2.fig.add_subplot(111)# self.F2.axes(aspect='equal')# 绘制饼图self.F2.axes.pie(x=[negative,medium,positive], # 绘图数据labels=['负向', '中性', '正向'], # 添加教育水平标签autopct='%.2f%%', # 设置百分比的格式,这里保留一位小数pctdistance=0.8, # 设置百分比标签与圆心的距离labeldistance=1.55, # 设置水平标签与圆心的距离startangle=180, # 设置饼图的初始角度radius=1.3, # 设置饼图的半径counterclock=False, # 是否逆时针,这里设置为顺时针方向wedgeprops={'linewidth': 1.5, 'edgecolor': 'red'}, # 设置饼图内外边界的属性值# textprops={'fontsize': 10, 'color': 'black'}, #设置文本标签的属性值)# 添加图标题self.F2.axes.set_title('情感倾向占比图')self.F2.fig.legend()# self.F2.fig.tight_layout()self.gridlayout2.addWidget(self.F2, 0, 0)print(positive)
解决方案
将布局代码放在__init__函数中,运行一次,如果要实时更新的话,需要调用self.gridlayout2.update()来更新容器布局中的图像
def __init__(self):super(weibo_search_logic, self).__init__()self.setupUi(self)self.setWindowIcon(QIcon(r"resources/icon.ico"))self.gridlayout2 = QGridLayout(self.groupBox) # 继承容器groupBoxself.run()
def plot(self,li): result_dict = li[-1]negative,medium,positive = result_dict["负"],result_dict["中"],result_dict["正"]self.F2 = MyFigure(width=4, height=5, dpi=100)# 将横、纵坐标轴标准化处理,确保饼图是一个正圆,否则为椭圆self.F2.axes = self.F2.fig.add_subplot(111)# self.F2.axes(aspect='equal')# 绘制饼图self.F2.axes.pie(x=[negative,medium,positive], # 绘图数据labels=['负向', '中性', '正向'], # 添加教育水平标签autopct='%.2f%%', # 设置百分比的格式,这里保留一位小数pctdistance=0.8, # 设置百分比标签与圆心的距离labeldistance=1.55, # 设置水平标签与圆心的距离startangle=180, # 设置饼图的初始角度radius=1.3, # 设置饼图的半径counterclock=False, # 是否逆时针,这里设置为顺时针方向wedgeprops={'linewidth': 1.5, 'edgecolor': 'red'}, # 设置饼图内外边界的属性值# textprops={'fontsize': 10, 'color': 'black'}, #设置文本标签的属性值)# 添加图标题self.F2.axes.set_title('情感倾向占比图')self.F2.fig.legend()# self.F2.fig.tight_layout()self.gridlayout2.addWidget(self.F2, 0, 0)self.gridlayout2.update()print(positive)