python - Best way to display series of matplotlib plots in browser -
i still familiarizing myself library , interested in displaying series of figures in webpage or saving them format can save , output webpage. best way this?
        plots = []             row in dataframe:                 x-values = row[1] #series of x values                 y-values = row[2] #series of y values                 = plt.figure()                 plt.plot(x-values, y-values)                 plots.append(a)          #display array of plots in browser   
 
  
Comments
Post a Comment