Creating a Dash app to check a pandas dataframe including a time series column with other numerical columns. Dash app allows to compare pair of columns and visualize each column's time series.
- Setup account on Heroku
- Create a new app and deploy using GitHub. Connect to your Github repo where app files are.
- As alternative, deploy app with The Heroku CLI
- Install Heroku CLI
- Change to directory where your app files are:
$ cd ~/myapp
- Login in Heroku:
$ heroku login
- Create an app:
$ heroku create
- Initialize a git repository in a new or existing directory with:
$ git init $ heroku git:remote -a <app-name>
- Deploy application:
$ git add . $ git commit -am "make it better" $ git push heroku master