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

Popular posts from this blog

PHP DOM loadHTML() method unusual warning -

python - How to create jsonb index using GIN on SQLAlchemy? -

c# - TransactionScope not rolling back although no complete() is called -