flask-volt-dashboard
flask-volt-dashboard copied to clipboard
Plot Data on Dashboard
Hi , I was wondering how to implement a matplotlib plot on the dashboard with own data. Is there an easy approach ?
Cheers
Hello @Damon0603
Can you tell us more regarding this use case?
Here is a simple Flask &MatplotLIB usage that generates an image on-the-fly
https://stackoverflow.com/questions/50728328/python-how-to-show-matplotlib-in-flask
Hey thank you for your response.
Well I have trouble plotting data like this.
`import pandas as pd import numpy as np import matplotlib.pyplot as plt import os
df = pd.read_csv('AAPL_Montly_updates.csv',sep =",", index_col='Date')
df['Adj Close'].plot(figsize=(10,8)) plt.title('Closing price')`
I would like to show a simple plot in the app. I somehow can´t find a proper solution to that.
html is like the template : ` {% block stylesheets %}{% endblock stylesheets %} {% block content %}
{% endblock content %}
{% block javascripts %}{% endblock javascripts %}`
Hello!
Sorry for the delay. The new AppSeed Service now manages the project and related issues:
https://app-generator.dev/ - Open-Source Platform.
Ty!