├── .idea ├── Streamlit.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── Procfile ├── README.md ├── app.py ├── images ├── age.png ├── altair.png ├── bg.png ├── df.png ├── driving.png ├── explorer.png ├── explorer1.png ├── heroku_create.png ├── heroku_create_push.png ├── heroku_login.png ├── heroku_open.png ├── heroku_push.png ├── heroku_web.png ├── markdown.png ├── multiselect.png ├── slider.png ├── uber.jpg └── uber.png ├── requirements.txt └── setup.sh /.idea/Streamlit.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 11 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 56 | 57 | 58 | 60 | 61 | 69 | 70 | 71 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 |