使用 Python,如何以编程方式更新 Pygal 图表的数据?
下面的代码可以作为静态堆叠条形图正常工作,但我不知道如何适应变化的值。
考虑/问题:
- 我想更新的值来自每五分钟一次的字符串形式的 REST 调用。
- 我还没有弄清楚如何更新 Pygal 图表的数据,因为将字符串插入列表会导致错误(如下所示)。
- 我不知道如何将新整数列表插入到下面的“类”中。
- 对于这个例子,我只展示了五个数据点,但我最终可能需要拥有多达 100 个数据点。
- 设置变量可能适用于静态数量的元素,但我的元素会偶尔增加和减少。
import pygal
line_chart = pygal.HorizontalStackedBar()
line_chart.title = 'Application Health'
line_chart.x_labels = ( "cluster05", "cluster04", "cluster03", "cluster02", "cluster01")
line_chart.add('Critical', [2, 5, 4, 1, None])
line_chart.add('Warning',[1, 7, 2, None, 2])
line_chart.add('OK', [25, 30, 19, 20, 25])
line_chart.render_to_file('test_StackedBar.svg')
线型是下面的类。
>>> type(line_chart.add('OK', [25, 30, 19, 20, 25]))
<class 'pygal.graph.horizontalstackedbar.HorizontalStackedBar'>
>>>
newData = "21, 55, 35, 82, 47, 70, 60"
line_chart.add('OK',[newData])
TypeError: unsupported operand type(s) for +: 'int' and 'str'
newData = "21, 55, 35, 82, 47, 70, 60"
y = list(newData)
line_chart.add('OK',[y])
line_chart.render_to_file('test_StackedBar.svg')
TypeError: unsupported operand type(s) for +: 'int' and 'list'