提问:绘制饼图出现错误
补充 : 附带代码:from pyecharts.charts import Pieimport pandas as pdvote_result = pd.read_csv("csv/vote_result.csv")c = ( Pie() #.add("",vote_result['感兴趣的领域'],vote_result['票数']) .add("", vote_result['感兴趣的领域'], vote_result['票数'], # is_label_show=True ))c.render('html/1.饼图.html')
网友回答: