Я построил Webapp с Flask (с интерфейсом JS), и теперь я хотел бы добавить диаграммы для отображения моих данных.
Мне удалось встроить в него диаграмму, но она статическая, есть ли способсделать его динамическим (например, со случайными значениями, чтобы позже я мог добавить к нему свои собственные данные)?
def index():
rng = pd.date_range('1/1/2011', periods=7500, freq='H')
ts = pd.Series(np.random.randn(len(rng)), index=rng)
graphs = [
dict(
data=[
dict(
x= arr,
y=[10, 20, 30],
type='scatter'
),
],
layout=dict(
title='first graph'
)
)
]
# Add "ids" to each of the graphs to pass up to the client
# for templating
ids = ['graph-{}'.format(i) for i, _ in enumerate(graphs)]
# Convert the figures to JSON
# PlotlyJSONEncoder appropriately converts pandas, datetime, etc
# objects to their JSON equivalents
graphJSON = json.dumps(graphs, cls=plotly.utils.PlotlyJSONEncoder)
return render_template('index.html',
ids=ids,
graphJSON=graphJSON)