我仍然熟悉图书馆,并且有兴趣在网页中显示一系列数字或将其保存为我可以保存并输出到网页的格式。最好的方法是什么?
plots = []
for row in dataFrame:
x-values = row[1] #Series of x values
y-values = row[2] #Series of y values
a = plt.figure()
plt.plot(x-values, y-values)
plots.append(a)
#Display array of plots in a browser