在浏览器中显示matplotlib系列图的最佳方法

时间:2015-06-18 23:33:01

标签: python matplotlib

我仍然熟悉图书馆,并且有兴趣在网页中显示一系列数字或将其保存为我可以保存并输出到网页的格式。最好的方法是什么?

        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 

0 个答案:

没有答案