├── .DS_Store ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── clt_app ├── README.md ├── clt_demo.py ├── example.py └── hello_world.py ├── components_example ├── .DS_Store ├── pages │ ├── aggrid.py │ ├── folium_map.py │ ├── penguin_animated.py │ ├── penguin_profiled.py │ └── plotly_events.py ├── penguins.csv ├── streamlit_app.py ├── trees.csv └── trees_sample.csv ├── database_examples ├── bigquery_app.py ├── queries.py └── streamlit_app.py ├── huggingface_demo └── streamlit_app.py ├── job_application_example ├── README.md ├── airport_location.csv ├── haversine.png ├── job_problems.md └── job_streamlit.py ├── mpa_example ├── pages │ ├── app1.py │ └── app2.py └── streamlit_app.py ├── penguin_app ├── README.md ├── penguins.csv ├── penguins.py └── session_state_examples.py ├── penguin_ml ├── README.md ├── feature_importance.png ├── output_penguin.pickle ├── penguins.csv ├── penguins_ml.py ├── penguins_streamlit.py ├── random_forest_penguin.pickle └── requirements.txt ├── plotting_app ├── README.md ├── plot_demo.py └── tmp.py ├── pretty_trees ├── README.md ├── pages │ ├── data_quality.py │ └── map.py ├── pretty_trees.py └── trees.csv ├── random_survey_app ├── README.md ├── app.py └── requirements.txt ├── requirements.txt ├── streamlit_goodreads_book ├── README.md ├── goodreads_app.py ├── goodreads_history.csv └── requirements.txt └── trees_app ├── README.md ├── all_code.py ├── trees.csv └── trees.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/README.md -------------------------------------------------------------------------------- /clt_app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/clt_app/README.md -------------------------------------------------------------------------------- /clt_app/clt_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/clt_app/clt_demo.py -------------------------------------------------------------------------------- /clt_app/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/clt_app/example.py -------------------------------------------------------------------------------- /clt_app/hello_world.py: -------------------------------------------------------------------------------- 1 | import streamlit as st 2 | 3 | st.write('Hello World') -------------------------------------------------------------------------------- /components_example/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/components_example/.DS_Store -------------------------------------------------------------------------------- /components_example/pages/aggrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/components_example/pages/aggrid.py -------------------------------------------------------------------------------- /components_example/pages/folium_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/components_example/pages/folium_map.py -------------------------------------------------------------------------------- /components_example/pages/penguin_animated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/components_example/pages/penguin_animated.py -------------------------------------------------------------------------------- /components_example/pages/penguin_profiled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/components_example/pages/penguin_profiled.py -------------------------------------------------------------------------------- /components_example/pages/plotly_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/components_example/pages/plotly_events.py -------------------------------------------------------------------------------- /components_example/penguins.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/components_example/penguins.csv -------------------------------------------------------------------------------- /components_example/streamlit_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/components_example/streamlit_app.py -------------------------------------------------------------------------------- /components_example/trees.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/components_example/trees.csv -------------------------------------------------------------------------------- /components_example/trees_sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/components_example/trees_sample.csv -------------------------------------------------------------------------------- /database_examples/bigquery_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/database_examples/bigquery_app.py -------------------------------------------------------------------------------- /database_examples/queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/database_examples/queries.py -------------------------------------------------------------------------------- /database_examples/streamlit_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/database_examples/streamlit_app.py -------------------------------------------------------------------------------- /huggingface_demo/streamlit_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/huggingface_demo/streamlit_app.py -------------------------------------------------------------------------------- /job_application_example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/job_application_example/README.md -------------------------------------------------------------------------------- /job_application_example/airport_location.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/job_application_example/airport_location.csv -------------------------------------------------------------------------------- /job_application_example/haversine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/job_application_example/haversine.png -------------------------------------------------------------------------------- /job_application_example/job_problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/job_application_example/job_problems.md -------------------------------------------------------------------------------- /job_application_example/job_streamlit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/job_application_example/job_streamlit.py -------------------------------------------------------------------------------- /mpa_example/pages/app1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/mpa_example/pages/app1.py -------------------------------------------------------------------------------- /mpa_example/pages/app2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/mpa_example/pages/app2.py -------------------------------------------------------------------------------- /mpa_example/streamlit_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/mpa_example/streamlit_app.py -------------------------------------------------------------------------------- /penguin_app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/penguin_app/README.md -------------------------------------------------------------------------------- /penguin_app/penguins.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/penguin_app/penguins.csv -------------------------------------------------------------------------------- /penguin_app/penguins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/penguin_app/penguins.py -------------------------------------------------------------------------------- /penguin_app/session_state_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/penguin_app/session_state_examples.py -------------------------------------------------------------------------------- /penguin_ml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/penguin_ml/README.md -------------------------------------------------------------------------------- /penguin_ml/feature_importance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/penguin_ml/feature_importance.png -------------------------------------------------------------------------------- /penguin_ml/output_penguin.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/penguin_ml/output_penguin.pickle -------------------------------------------------------------------------------- /penguin_ml/penguins.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/penguin_ml/penguins.csv -------------------------------------------------------------------------------- /penguin_ml/penguins_ml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/penguin_ml/penguins_ml.py -------------------------------------------------------------------------------- /penguin_ml/penguins_streamlit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/penguin_ml/penguins_streamlit.py -------------------------------------------------------------------------------- /penguin_ml/random_forest_penguin.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/penguin_ml/random_forest_penguin.pickle -------------------------------------------------------------------------------- /penguin_ml/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/penguin_ml/requirements.txt -------------------------------------------------------------------------------- /plotting_app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/plotting_app/README.md -------------------------------------------------------------------------------- /plotting_app/plot_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/plotting_app/plot_demo.py -------------------------------------------------------------------------------- /plotting_app/tmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/plotting_app/tmp.py -------------------------------------------------------------------------------- /pretty_trees/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/pretty_trees/README.md -------------------------------------------------------------------------------- /pretty_trees/pages/data_quality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/pretty_trees/pages/data_quality.py -------------------------------------------------------------------------------- /pretty_trees/pages/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/pretty_trees/pages/map.py -------------------------------------------------------------------------------- /pretty_trees/pretty_trees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/pretty_trees/pretty_trees.py -------------------------------------------------------------------------------- /pretty_trees/trees.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/pretty_trees/trees.csv -------------------------------------------------------------------------------- /random_survey_app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/random_survey_app/README.md -------------------------------------------------------------------------------- /random_survey_app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/random_survey_app/app.py -------------------------------------------------------------------------------- /random_survey_app/requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit 2 | numpy 3 | plotly -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/requirements.txt -------------------------------------------------------------------------------- /streamlit_goodreads_book/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/streamlit_goodreads_book/README.md -------------------------------------------------------------------------------- /streamlit_goodreads_book/goodreads_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/streamlit_goodreads_book/goodreads_app.py -------------------------------------------------------------------------------- /streamlit_goodreads_book/goodreads_history.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/streamlit_goodreads_book/goodreads_history.csv -------------------------------------------------------------------------------- /streamlit_goodreads_book/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/streamlit_goodreads_book/requirements.txt -------------------------------------------------------------------------------- /trees_app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/trees_app/README.md -------------------------------------------------------------------------------- /trees_app/all_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/trees_app/all_code.py -------------------------------------------------------------------------------- /trees_app/trees.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/trees_app/trees.csv -------------------------------------------------------------------------------- /trees_app/trees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjrichards/Streamlit-for-Data-Science/HEAD/trees_app/trees.py --------------------------------------------------------------------------------