I have a jupyter notebook .ipynb that includes the code I wrote to generate some data and a pandas dataframe.
I need to deploy a web app that renders the location data and allows users to perform some basic analysis. I think Dash Framework offers everything that I need!
My question is how do I reference the pandas dataframe in app.py file.
I need my application code (app.py file) to reference the pandas dataframe from the python notebook file and parse the location data to display on a map/create visualization.