├── Bonus-Content ├── Components │ ├── buttons.md │ ├── cards.md │ ├── checklists.md │ └── sliders.md ├── Utilities │ ├── indicators.md │ └── stacks.md └── creating_components │ ├── part1_getting_started.md │ ├── part2_architecture_overview.md │ ├── part3_conventions_and_common_patterns.md │ ├── part4_example1.md │ └── part5_tips_and_tricks.md ├── Chapter-2 ├── dd.txt └── listing-2-1.py ├── Chapter-4 ├── assets │ └── mystyles.css ├── tweets.csv └── twitter_app.py ├── Chapter-5 ├── our_indicator.py └── worldbank.py ├── Chapter-6 ├── README.md ├── app.py ├── assets │ ├── asset_allocation.png │ ├── historic.csv │ └── mycss.css └── requirements.txt ├── Chapter-7 ├── README.md └── dash-svm │ ├── Procfile │ ├── README.md │ ├── app.py │ ├── assets │ ├── base-styles.css │ ├── custom-styles.css │ └── dash-logo-new.png │ ├── images │ ├── animated1.gif │ └── screenshot.png │ ├── requirements.txt │ └── utils │ ├── README.md │ ├── dash_reusable_components.py │ └── figures.py ├── Chapter-8 ├── app.py ├── debug-demo.py ├── post-black-formatting.py └── pre-black-formatting.py └── README.md /Bonus-Content/Components/buttons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Bonus-Content/Components/buttons.md -------------------------------------------------------------------------------- /Bonus-Content/Components/cards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Bonus-Content/Components/cards.md -------------------------------------------------------------------------------- /Bonus-Content/Components/checklists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Bonus-Content/Components/checklists.md -------------------------------------------------------------------------------- /Bonus-Content/Components/sliders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Bonus-Content/Components/sliders.md -------------------------------------------------------------------------------- /Bonus-Content/Utilities/indicators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Bonus-Content/Utilities/indicators.md -------------------------------------------------------------------------------- /Bonus-Content/Utilities/stacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Bonus-Content/Utilities/stacks.md -------------------------------------------------------------------------------- /Bonus-Content/creating_components/part1_getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Bonus-Content/creating_components/part1_getting_started.md -------------------------------------------------------------------------------- /Bonus-Content/creating_components/part2_architecture_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Bonus-Content/creating_components/part2_architecture_overview.md -------------------------------------------------------------------------------- /Bonus-Content/creating_components/part3_conventions_and_common_patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Bonus-Content/creating_components/part3_conventions_and_common_patterns.md -------------------------------------------------------------------------------- /Bonus-Content/creating_components/part4_example1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Bonus-Content/creating_components/part4_example1.md -------------------------------------------------------------------------------- /Bonus-Content/creating_components/part5_tips_and_tricks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Bonus-Content/creating_components/part5_tips_and_tricks.md -------------------------------------------------------------------------------- /Chapter-2/dd.txt: -------------------------------------------------------------------------------- 1 | asfds 2 | -------------------------------------------------------------------------------- /Chapter-2/listing-2-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Chapter-2/listing-2-1.py -------------------------------------------------------------------------------- /Chapter-4/assets/mystyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Chapter-4/assets/mystyles.css -------------------------------------------------------------------------------- /Chapter-4/tweets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Chapter-4/tweets.csv -------------------------------------------------------------------------------- /Chapter-4/twitter_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Chapter-4/twitter_app.py -------------------------------------------------------------------------------- /Chapter-5/our_indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Chapter-5/our_indicator.py -------------------------------------------------------------------------------- /Chapter-5/worldbank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Chapter-5/worldbank.py -------------------------------------------------------------------------------- /Chapter-6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Chapter-6/README.md -------------------------------------------------------------------------------- /Chapter-6/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Chapter-6/app.py -------------------------------------------------------------------------------- /Chapter-6/assets/asset_allocation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Chapter-6/assets/asset_allocation.png -------------------------------------------------------------------------------- /Chapter-6/assets/historic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Chapter-6/assets/historic.csv -------------------------------------------------------------------------------- /Chapter-6/assets/mycss.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Chapter-6/assets/mycss.css -------------------------------------------------------------------------------- /Chapter-6/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Chapter-6/requirements.txt -------------------------------------------------------------------------------- /Chapter-7/README.md: -------------------------------------------------------------------------------- 1 | # Chapter 7 Support Vector Machines Dash App 2 | -------------------------------------------------------------------------------- /Chapter-7/dash-svm/Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:server --workers 4 -------------------------------------------------------------------------------- /Chapter-7/dash-svm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Chapter-7/dash-svm/README.md -------------------------------------------------------------------------------- /Chapter-7/dash-svm/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Chapter-7/dash-svm/app.py -------------------------------------------------------------------------------- /Chapter-7/dash-svm/assets/base-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Chapter-7/dash-svm/assets/base-styles.css -------------------------------------------------------------------------------- /Chapter-7/dash-svm/assets/custom-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Chapter-7/dash-svm/assets/custom-styles.css -------------------------------------------------------------------------------- /Chapter-7/dash-svm/assets/dash-logo-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Chapter-7/dash-svm/assets/dash-logo-new.png -------------------------------------------------------------------------------- /Chapter-7/dash-svm/images/animated1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Chapter-7/dash-svm/images/animated1.gif -------------------------------------------------------------------------------- /Chapter-7/dash-svm/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Chapter-7/dash-svm/images/screenshot.png -------------------------------------------------------------------------------- /Chapter-7/dash-svm/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Chapter-7/dash-svm/requirements.txt -------------------------------------------------------------------------------- /Chapter-7/dash-svm/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Chapter-7/dash-svm/utils/README.md -------------------------------------------------------------------------------- /Chapter-7/dash-svm/utils/dash_reusable_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Chapter-7/dash-svm/utils/dash_reusable_components.py -------------------------------------------------------------------------------- /Chapter-7/dash-svm/utils/figures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Chapter-7/dash-svm/utils/figures.py -------------------------------------------------------------------------------- /Chapter-8/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Chapter-8/app.py -------------------------------------------------------------------------------- /Chapter-8/debug-demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Chapter-8/debug-demo.py -------------------------------------------------------------------------------- /Chapter-8/post-black-formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Chapter-8/post-black-formatting.py -------------------------------------------------------------------------------- /Chapter-8/pre-black-formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/Chapter-8/pre-black-formatting.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DashBookProject/Plotly-Dash/HEAD/README.md --------------------------------------------------------------------------------