From 93bc92fa7ce218f32c949b15e375980f800fc1d5 Mon Sep 17 00:00:00 2001 From: Florian Kromer Date: Thu, 25 Jul 2019 12:30:41 +0200 Subject: [PATCH 01/25] add some official introduction tutorials --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 1e3ac33..218e4aa 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,9 @@ A curated list of awesome Dash (plotly) resources - [Visualize Earthquakes with Plotly Dash](https://www.giacomodebidda.com/visualize-earthquakes-with-plotly-dash/) - Environmental scan of alternatives to Dash followed with a tutorial. - [ARGO Labs - Plotly Dash Tutorial (Video)](https://www.youtube.com/watch?v=yfWJXkySfe0) - Detailed introduction to creating interactive dashboards. - [Data Visualization GUIs with Dash and Python (Video playlist)](https://www.youtube.com/watch?v=J_Cy_QjG6NE&list=PLQVvvaa0QuDfsGImWNt1eUEveHOepkjqt) - Five-part series exploring Dash features. +- [Interactive Image Processing with Dash-Canvas](https://www.youtube.com/watch?v=LKXSFBB5ccI) - Official introduction video to the Dash Canvas components. +- [Dash Cytoscape Component](https://www.youtube.com/watch?v=snXcIsCMQgk) - Official introduction video to the Dash Cytoscape components. +- [An introduction to Dash DataTable](https://www.youtube.com/watch?v=dueejcyrYh8) - Official introduction video to the Dash DataTable components. ## Component Libraries - [Tutorial on creating custom Dash components with React.js.](https://plot.ly/dash/plugins) From 539f0c688f50acdb3847af848bb111315fded2c5 Mon Sep 17 00:00:00 2001 From: Florian Kromer Date: Wed, 25 Sep 2019 22:08:11 +0200 Subject: [PATCH 02/25] add helper script to get potent. relevant gh repos --- query_github | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100755 query_github diff --git a/query_github b/query_github new file mode 100755 index 0000000..2613c85 --- /dev/null +++ b/query_github @@ -0,0 +1,33 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +"""Script to get owners and websites of GitHub projects tagged with topics +plotly and dash. + +The script has the side effect of depending on environment variables GIT_USER +and GIT_PASSWORD which have to be set to the Github user name and the GitHub +password respectively. + +The script has been tested with PyGithub v1.43.8 running under Python 3.6.8. +""" + +from os import getenv + +from github import Github +from github.GithubException import RateLimitExceededException + +USER = getenv("GIT_USER") +PASSWORD = getenv("GIT_PASSWORD") + +client = Github(USER, PASSWORD) # pylint: disable=C0103 +try: + repos = client.search_repositories(query="topic:plotly topic:dash") # pylint: disable=C0103 + for r in repos: + name = r.name + owner = r.owner.login + url = r.owner.blog + print(f"Repo: {name}") + print(f" Owner: {owner}") + print(f" URL: {url}") +except RateLimitExceededException: + print("You've triggered your GitHub API rate limit. Try again later.") From e911d8c928bcd1cd558b659b5d38a1e8fa7225c5 Mon Sep 17 00:00:00 2001 From: Florian Kromer Date: Wed, 4 Dec 2019 21:41:17 +0100 Subject: [PATCH 03/25] add pypi project query script --- query_pypi | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 query_pypi diff --git a/query_pypi b/query_pypi new file mode 100644 index 0000000..edca52c --- /dev/null +++ b/query_pypi @@ -0,0 +1,23 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +Prints all PyPi projects which make use of the +PyPi trove classifier avilable for the framework. +The script has been tested running under Python 3.6.8. +""" + + +import xmlrpc.client as xmlrpclib + +client = xmlrpclib.ServerProxy('https://pypi.python.org/pypi') + +trove_classifiers = ["Framework :: Dash"] +pypi_projects = [] +for tc in trove_classifiers: + tc_pypi_projects = [p[0] for p in client.browse([tc])] + pypi_projects += tc_pypi_projects + +for p in set(pypi_projects): + print(p) +~ From 6cbd1c008017b84251a7e637e3e6e1970ce6b5c5 Mon Sep 17 00:00:00 2001 From: Elias Dabbas Date: Mon, 23 Dec 2019 14:34:49 +0200 Subject: [PATCH 04/25] Add a new link to the Galleries section --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index bf27e52..c0bee65 100644 --- a/README.md +++ b/README.md @@ -81,6 +81,7 @@ A curated list of awesome Dash (plotly) resources ## Galleries - [Plotly App Gallery](https://plot.ly/dash/gallery) - Plotly's collection of Dash applications. - [Dash Recipes GitHub](https://github.com/plotly/dash-recipes) - Collection of scripts and examples created while answering questions from the greater Dash community. +- [Dash Data Dashboards and Apps](https://www.dashboardom.com/) - Collection of data dashboards with real life data, for various topics, as well as a few apps for online marketing built with Dash. ## Talks - [Dash: Data exploration web apps in pure Python](https://www.youtube.com/watch?v=eusglTlW4OA) - Chelsea Douglas, PyData DC 2018. From d8850070bba085d4fef1b6e768fc9039d856197f Mon Sep 17 00:00:00 2001 From: Luke Singham Date: Fri, 17 Jan 2020 14:51:49 +1100 Subject: [PATCH 05/25] Add Elias to contributors --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c0bee65..2e0e14e 100644 --- a/README.md +++ b/README.md @@ -103,6 +103,7 @@ A curated list of awesome Dash (plotly) resources - [Sergey Pikhovkin](https://github.com/pikhovkin) - [Pascal Bugnion](https://pascalbugnion.net) - [Florian Kromer](https://github.com/fkromer) +- [Elias Dabbas](https://www.dashboardom.com) ## License [![CC0](http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg)](https://creativecommons.org/publicdomain/zero/1.0/)
This work is licensed under a Creative Commons Attribution 4.0 International License. From d4791013134fd4b35fe3c0b5ddc68c35b004a0fb Mon Sep 17 00:00:00 2001 From: Rishi Kambil Date: Mon, 12 Oct 2020 13:31:59 +0530 Subject: [PATCH 06/25] added entry under example app Vaex dataframe + dash integration --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2e0e14e..a64f9c8 100644 --- a/README.md +++ b/README.md @@ -74,6 +74,7 @@ A curated list of awesome Dash (plotly) resources - [Street Quality IDentification [SQUID]](https://squid-syracuse.herokuapp.com/) - Highlights poor quality roads with maps, data table and photos of the offending piece of road. [Source Code.](https://github.com/amyoshino/SQUID-Syracuse-Dashboard) - [VoxelViz](http://lukas-snoek.com/voxelviz) - Competition winning Visualization tool for (f)MRI data-sets. [Source Code.](https://github.com/lukassnoek/VoxelViz) - [Traffic Accidents UK](https://traffic-accidents-uk.herokuapp.com/) - Explore the 140,008 traffic accidents in the UK in 2015. [Source Code.](https://github.com/richard-muir/uk-car-accidents) +- [New York Taxi Rides](https://dash.vaex.io/) - A full year of the YellowCab Taxi company data from their prime, numbering well over 100 million trips. Dash + Vaex dataframe with over a 100 million rows. [Source Code.](https://github.com/vaexio/dash-120million-taxi-app) ## Idiomatic examples - [Dash recipes](https://github.com/plotly/dash-recipes) - A collection of scripts and examples created of the plotly team while answering questions from the greater Dash community. From 4e33b6a45f9b1279c080594a567c8bfb6a1e39cb Mon Sep 17 00:00:00 2001 From: Luke Singham Date: Mon, 2 Nov 2020 14:18:44 +0000 Subject: [PATCH 07/25] Add vaexio to contributors section --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a64f9c8..13a1ab3 100644 --- a/README.md +++ b/README.md @@ -105,6 +105,7 @@ A curated list of awesome Dash (plotly) resources - [Pascal Bugnion](https://pascalbugnion.net) - [Florian Kromer](https://github.com/fkromer) - [Elias Dabbas](https://www.dashboardom.com) +- [vaexio](https://github.com/vaexio) ## License [![CC0](http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg)](https://creativecommons.org/publicdomain/zero/1.0/)
This work is licensed under a Creative Commons Attribution 4.0 International License. From 2719988651858202d957e4c4d7195b5ba00d37f4 Mon Sep 17 00:00:00 2001 From: Marcelo Trylesinski Date: Fri, 20 Nov 2020 19:46:32 +0100 Subject: [PATCH 08/25] Remove 'sd-data-table' reference --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 13a1ab3..4adde66 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,6 @@ A curated list of awesome Dash (plotly) resources - [mydcc](https://github.com/jimmybow/mydcc) - Extension of Dash Core Components. - [sd-material-ui](https://github.com/StratoDem/sd-material-ui) - StratoDem Analytics implementations of material-ui components for Dash. - [sd-range-slider](https://github.com/StratoDem/sd-range-slider) - Range Slider Dash component. -- [sd-data-table](https://github.com/StratoDem/sd-data-table) - StratoDem wrapper for React DataTable. - [dj-plotly-dash](https://github.com/pikhovkin/dj-plotly-dash) - Plotly Dash fork for Django. - [dash-flexbox-grid](https://github.com/pikhovkin/dash-flexbox-grid) - Wrapper around react-flexbox-grid for Plotly Dash. - [dash-color-picker](https://github.com/vivekvs1/dash-color-picker) - Wrapper around react-color. From 49e3414c73d369fe9a017fb6373de58814011a57 Mon Sep 17 00:00:00 2001 From: Luke Singham Date: Mon, 1 Feb 2021 06:04:19 +0000 Subject: [PATCH 09/25] Add Gutensearch to app examples --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 4adde66..9f5703f 100644 --- a/README.md +++ b/README.md @@ -74,6 +74,7 @@ A curated list of awesome Dash (plotly) resources - [VoxelViz](http://lukas-snoek.com/voxelviz) - Competition winning Visualization tool for (f)MRI data-sets. [Source Code.](https://github.com/lukassnoek/VoxelViz) - [Traffic Accidents UK](https://traffic-accidents-uk.herokuapp.com/) - Explore the 140,008 traffic accidents in the UK in 2015. [Source Code.](https://github.com/richard-muir/uk-car-accidents) - [New York Taxi Rides](https://dash.vaex.io/) - A full year of the YellowCab Taxi company data from their prime, numbering well over 100 million trips. Dash + Vaex dataframe with over a 100 million rows. [Source Code.](https://github.com/vaexio/dash-120million-taxi-app) +- [GutenSearch](https://gutensearch.com/) - Look inside the books of Project Gutenberg. [Source Code.](https://github.com/cordb/gutensearch) ## Idiomatic examples - [Dash recipes](https://github.com/plotly/dash-recipes) - A collection of scripts and examples created of the plotly team while answering questions from the greater Dash community. From c4e67915195ce241d206f5b2ce503f5b321c1c12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Makefile=E5=90=9B?= Date: Sun, 28 Mar 2021 16:10:00 +0800 Subject: [PATCH 10/25] Update README.md add dash_echarts to the component libraries! --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 9f5703f..d512e3e 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,7 @@ A curated list of awesome Dash (plotly) resources - [Dash Cytoscape Component](https://dash.plot.ly/cytoscape) - Graph visualization component for creating easily customizable, high-performance, interactive, and web-based networks. - [Dash DataTable Component](https://dash.plot.ly/datatable) - Interactive table that supports rich styling, conditional formatting, editing, sorting, filtering, and more. - [Dash DAQ Components](https://dash.plot.ly/dash-daq) - Set of controls that make it simpler to integrate data acquisition and controls into your Dash applications. +- [Dash ECharts Components](https://github.com/mergeforward/dash_echarts) - ECharts(V5) Components for Dash! - [Dash HTML Components](https://github.com/plotly/dash-html-components) - [mydcc](https://github.com/jimmybow/mydcc) - Extension of Dash Core Components. - [sd-material-ui](https://github.com/StratoDem/sd-material-ui) - StratoDem Analytics implementations of material-ui components for Dash. From 126eee107a1fcd962f7c0c0b7f4452d771ff3705 Mon Sep 17 00:00:00 2001 From: Luke Singham Date: Thu, 15 Apr 2021 14:55:29 +0100 Subject: [PATCH 11/25] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d512e3e..107b9a9 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ A curated list of awesome Dash (plotly) resources - [Dash Cytoscape Component](https://dash.plot.ly/cytoscape) - Graph visualization component for creating easily customizable, high-performance, interactive, and web-based networks. - [Dash DataTable Component](https://dash.plot.ly/datatable) - Interactive table that supports rich styling, conditional formatting, editing, sorting, filtering, and more. - [Dash DAQ Components](https://dash.plot.ly/dash-daq) - Set of controls that make it simpler to integrate data acquisition and controls into your Dash applications. -- [Dash ECharts Components](https://github.com/mergeforward/dash_echarts) - ECharts(V5) Components for Dash! +- [Dash ECharts Components](https://github.com/mergeforward/dash_echarts) - ECharts(V5) Components for Dash. - [Dash HTML Components](https://github.com/plotly/dash-html-components) - [mydcc](https://github.com/jimmybow/mydcc) - Extension of Dash Core Components. - [sd-material-ui](https://github.com/StratoDem/sd-material-ui) - StratoDem Analytics implementations of material-ui components for Dash. From 58101aa0a92155084f66a901d4029db8fd60ce54 Mon Sep 17 00:00:00 2001 From: Luke Singham Date: Thu, 15 Apr 2021 14:57:33 +0100 Subject: [PATCH 12/25] Add contributor --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 107b9a9..7fa02d4 100644 --- a/README.md +++ b/README.md @@ -107,6 +107,7 @@ A curated list of awesome Dash (plotly) resources - [Florian Kromer](https://github.com/fkromer) - [Elias Dabbas](https://www.dashboardom.com) - [vaexio](https://github.com/vaexio) +- [Fanchao MENG](https://github.com/pingf) ## License [![CC0](http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg)](https://creativecommons.org/publicdomain/zero/1.0/)
This work is licensed under a Creative Commons Attribution 4.0 International License. From 688dbba9bb046860e0a4a9d675cb525a3d5d928e Mon Sep 17 00:00:00 2001 From: Niko Pasanen Date: Tue, 4 May 2021 00:05:38 +0300 Subject: [PATCH 13/25] add dash-uploader --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2e0e14e..88ea4b2 100644 --- a/README.md +++ b/README.md @@ -59,6 +59,7 @@ A curated list of awesome Dash (plotly) resources - [dash-color-picker](https://github.com/vivekvs1/dash-color-picker) - Wrapper around react-color. - [dash-dual-listbox](https://github.com/vivekvs1/dash-dual-listbox) - Wrapper around react-duallist. - [dash-bootstrap-components](https://dash-bootstrap-components.opensource.asidatascience.com/) - Layout engine, default styles and high-level components based on Bootstrap. +- [dash-uploader](https://github.com/np-8/dash-uploader) - Upload component for Dash. Supports large data files. ## App Examples - [Oil and Gas Explorer](https://plot.ly/dash/gallery/new-york-oil-and-gas/) - Explore oil and gas production over time and with linked visualisations. [Source Code.](https://github.com/plotly/dash-oil-and-gas-demo) From 9bfdb1e975a60373551b99f0a1b7c683d4bdb8cd Mon Sep 17 00:00:00 2001 From: Snehil Vijay <91216500+snehilvj@users.noreply.github.com> Date: Tue, 7 Dec 2021 04:05:06 +0530 Subject: [PATCH 14/25] Added Dash Mantine Components --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 5b11180..a37cfed 100644 --- a/README.md +++ b/README.md @@ -60,6 +60,7 @@ A curated list of awesome Dash (plotly) resources - [dash-dual-listbox](https://github.com/vivekvs1/dash-dual-listbox) - Wrapper around react-duallist. - [dash-bootstrap-components](https://dash-bootstrap-components.opensource.asidatascience.com/) - Layout engine, default styles and high-level components based on Bootstrap. - [dash-uploader](https://github.com/np-8/dash-uploader) - Upload component for Dash. Supports large data files. +- [Dash Mantine Components](https://github.com/snehilvj/dash-mantine-components) - Dash components based on Mantine React Components library. ## App Examples - [Oil and Gas Explorer](https://plot.ly/dash/gallery/new-york-oil-and-gas/) - Explore oil and gas production over time and with linked visualisations. [Source Code.](https://github.com/plotly/dash-oil-and-gas-demo) @@ -109,6 +110,7 @@ A curated list of awesome Dash (plotly) resources - [Elias Dabbas](https://www.dashboardom.com) - [vaexio](https://github.com/vaexio) - [Fanchao MENG](https://github.com/pingf) +- [Snehil Vijay](https://github.com/snehilvj) ## License [![CC0](http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg)](https://creativecommons.org/publicdomain/zero/1.0/)
This work is licensed under a Creative Commons Attribution 4.0 International License. From 5c92a568562d4865e65451c52fb96c0460548730 Mon Sep 17 00:00:00 2001 From: Snehil Vijay <91216500+snehilvj@users.noreply.github.com> Date: Tue, 7 Dec 2021 04:07:43 +0530 Subject: [PATCH 15/25] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a37cfed..7dbb70a 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ A curated list of awesome Dash (plotly) resources - [dash-dual-listbox](https://github.com/vivekvs1/dash-dual-listbox) - Wrapper around react-duallist. - [dash-bootstrap-components](https://dash-bootstrap-components.opensource.asidatascience.com/) - Layout engine, default styles and high-level components based on Bootstrap. - [dash-uploader](https://github.com/np-8/dash-uploader) - Upload component for Dash. Supports large data files. -- [Dash Mantine Components](https://github.com/snehilvj/dash-mantine-components) - Dash components based on Mantine React Components library. +- [Dash Mantine Components](https://github.com/snehilvj/dash-mantine-components) - Collection of 40+ Dash components based on Mantine React Components library. ## App Examples - [Oil and Gas Explorer](https://plot.ly/dash/gallery/new-york-oil-and-gas/) - Explore oil and gas production over time and with linked visualisations. [Source Code.](https://github.com/plotly/dash-oil-and-gas-demo) From 70aa832f5e6c0c81e524160a7d598aa4f0f5c192 Mon Sep 17 00:00:00 2001 From: Elias Dabbas Date: Wed, 15 Dec 2021 04:12:49 +0400 Subject: [PATCH 16/25] Add the Books category with a link to my Dash book --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 7dbb70a..42d5b32 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,7 @@ A curated list of awesome Dash (plotly) resources - [Galleries](#galleries) - [Cheat sheets](#cheat-sheets) - [Talks](#talks) +- [Books](#books) - [Community](#community) - [Contributors](#contributors) @@ -93,6 +94,9 @@ A curated list of awesome Dash (plotly) resources - [We're Launching Dash](https://www.youtube.com/watch?v=5BAthiN0htc&t=1s) - Chris Parmer, creator of Dash, speaking about the motivations behind Dash before it was launched (Plotcon NYC 2016). - [Plotly dash and data visualisation in Python, PyData, Berlin 2017](https://www.slideshare.net/vladimirkazantsev/plotly-dash-and-data-visualisation-in-python) - Volodymyr Kazantsev (slides only). +## Books +- [Interactive Dashboards and Data Apps with Plotly and Dash](https://www.amazon.com/Interactive-Dashboards-Data-Apps-Plotly-ebook/dp/B08XMW45VY): Harness the power of a fully fledged frontend web framework in Python – no JavaScript required. + ## Cheat sheets - [plotly.py Cheat Sheet](https://images.plot.ly/plotly-documentation/images/python_cheat_sheet.pdf) From 552f9d814d8f2a67093fa07b213626f3f443cd6f Mon Sep 17 00:00:00 2001 From: Jeroen Van Der Donckt <18898740+jvdd@users.noreply.github.com> Date: Thu, 24 Mar 2022 10:50:51 +0100 Subject: [PATCH 17/25] :sparkles: add plotly-resampler --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 42d5b32..8e03bee 100644 --- a/README.md +++ b/README.md @@ -62,6 +62,7 @@ A curated list of awesome Dash (plotly) resources - [dash-bootstrap-components](https://dash-bootstrap-components.opensource.asidatascience.com/) - Layout engine, default styles and high-level components based on Bootstrap. - [dash-uploader](https://github.com/np-8/dash-uploader) - Upload component for Dash. Supports large data files. - [Dash Mantine Components](https://github.com/snehilvj/dash-mantine-components) - Collection of 40+ Dash components based on Mantine React Components library. +- [plotly-resampler](https://github.com/predict-idlab/plotly-resampler) - Wrapper for plotly figures that adds data aggregation functionality (via a dash app), enabling to visualize large sequences. ## App Examples - [Oil and Gas Explorer](https://plot.ly/dash/gallery/new-york-oil-and-gas/) - Explore oil and gas production over time and with linked visualisations. [Source Code.](https://github.com/plotly/dash-oil-and-gas-demo) From 5c3e92ff0be9d187a2c939b2ff5f6b35a6c0f8b9 Mon Sep 17 00:00:00 2001 From: Jeroen Van Der Donckt <18898740+jvdd@users.noreply.github.com> Date: Sun, 8 May 2022 20:43:46 +0200 Subject: [PATCH 18/25] :pen: add suggestion Co-authored-by: Luke Singham --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8e03bee..113c3db 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ A curated list of awesome Dash (plotly) resources - [dash-bootstrap-components](https://dash-bootstrap-components.opensource.asidatascience.com/) - Layout engine, default styles and high-level components based on Bootstrap. - [dash-uploader](https://github.com/np-8/dash-uploader) - Upload component for Dash. Supports large data files. - [Dash Mantine Components](https://github.com/snehilvj/dash-mantine-components) - Collection of 40+ Dash components based on Mantine React Components library. -- [plotly-resampler](https://github.com/predict-idlab/plotly-resampler) - Wrapper for plotly figures that adds data aggregation functionality (via a dash app), enabling to visualize large sequences. +- [plotly-resampler](https://github.com/predict-idlab/plotly-resampler) - Wrapper for plotly figures that adds data downsampling (aggregating) functionality, enabling the visualization of large datasets. ## App Examples - [Oil and Gas Explorer](https://plot.ly/dash/gallery/new-york-oil-and-gas/) - Explore oil and gas production over time and with linked visualisations. [Source Code.](https://github.com/plotly/dash-oil-and-gas-demo) From b6df9dad15fce126fd84451a4ab83eb5dfe2854d Mon Sep 17 00:00:00 2001 From: Charming Data Date: Fri, 20 May 2022 23:14:22 -0400 Subject: [PATCH 19/25] adding youtube channel to tutorial section --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 113c3db..d0c9b70 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,7 @@ A curated list of awesome Dash (plotly) resources - [Plotly's tutorials - Part 2: Interactivity](https://plot.ly/dash/getting-started-part-2) - [Plotly's tutorials - Part 3: Interactive Graphing](https://plot.ly/dash/interactive-graphing) - [Plotly's tutorials - Part 4: Callbacks With State](https://plot.ly/dash/state) +- [Charming Data YouTube channel dedicated to teaching Dash](https://www.youtube.com/charmingdata) - [Interactive Web-Based Dashboards in Python](https://alysivji.github.io/reactive-dashboards-with-dash.html) - How the MVC model pertains to Dash and a walkthrough of building an app. - [Using Plotly’s Dash to deliver public sector decision support dashboards](https://medium.com/a-r-g-o/using-plotlys-dash-to-deliver-public-sector-decision-support-dashboards-ac863fa829fb) - Buiding a complex dashboard step-by-step. - [OPS CodeDay: Dash Plotly Map + Graph](https://radumas.info/blog/tutorial/2017/08/10/codeday.html) - How to use Jupyter notebooks in tandom with Dash to create mapping viz. From 015dc05260a94961041f7476fda2ebd1f633993a Mon Sep 17 00:00:00 2001 From: Charming Data Date: Fri, 20 May 2022 23:17:02 -0400 Subject: [PATCH 20/25] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d0c9b70..6e765fe 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ A curated list of awesome Dash (plotly) resources - [Plotly's tutorials - Part 2: Interactivity](https://plot.ly/dash/getting-started-part-2) - [Plotly's tutorials - Part 3: Interactive Graphing](https://plot.ly/dash/interactive-graphing) - [Plotly's tutorials - Part 4: Callbacks With State](https://plot.ly/dash/state) -- [Charming Data YouTube channel dedicated to teaching Dash](https://www.youtube.com/charmingdata) +- [Charming Data YouTube channel](https://www.youtube.com/charmingdata) - A channel dedicated to teaching Dash and Plotly with over 25k subscribers. - [Interactive Web-Based Dashboards in Python](https://alysivji.github.io/reactive-dashboards-with-dash.html) - How the MVC model pertains to Dash and a walkthrough of building an app. - [Using Plotly’s Dash to deliver public sector decision support dashboards](https://medium.com/a-r-g-o/using-plotlys-dash-to-deliver-public-sector-decision-support-dashboards-ac863fa829fb) - Buiding a complex dashboard step-by-step. - [OPS CodeDay: Dash Plotly Map + Graph](https://radumas.info/blog/tutorial/2017/08/10/codeday.html) - How to use Jupyter notebooks in tandom with Dash to create mapping viz. From 67b0d71b5806f7a3854ca9e9526628deebda3856 Mon Sep 17 00:00:00 2001 From: Ryan Gooch Date: Mon, 23 May 2022 09:41:48 -0600 Subject: [PATCH 21/25] Fix broken wind streaming link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6e765fe..faaf9cb 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ A curated list of awesome Dash (plotly) resources - [Simple Stock Tickers](https://plot.ly/dash/gallery/stock-tickers/) - Queries data from Google Finance and displays the results as candlestick charts. [Source Code.](https://github.com/plotly/dash-stock-tickers-demo-app) - [Volatility Surface Explorer](https://plot.ly/dash/gallery/volatility-surface) - Fetches CBOE options chain data from Yahoo Finance with Pandas Datareader and calculates the implied volatility of each option visualised in a 3D mesh chart. [Source Code.](https://github.com/plotly/dash-volatility-surface) - [Drug Discovery](https://plot.ly/dash/gallery/drug-explorer/) - Displays a description of the drug as you hover over points in the graph. [Source Code.](https://github.com/plotly/dash-drug-discovery-demo/) -- [Live Wind Streaming](https://plot.ly/dash/gallery/live-wind-data/) - Continually queries a SQL database and displays live charts of wind speed and wind direction. [Source Code.](https://github.com/plotly/dash-wind-streaming) +- [Live Wind Streaming](https://plot.ly/dash/gallery/live-wind-data/) - Continually queries a SQL database and displays live charts of wind speed and wind direction. [Source Code.](https://github.com/plotly/dash-sample-apps/tree/main/apps/dash-wind-streaming) - [Recession in 255 Charts](https://plot.ly/dash/gallery/recession-report/) - Adapted from NYTimes's excellent [How the Recession Reshaped the Economy in 255 Charts](https://www.nytimes.com/interactive/2014/06/05/upshot/how-the-recession-reshaped-the-economy-in-255-charts.html). [Source Code.](https://github.com/plotly/dash-recession-report-demo) - [3D Yield Curve](https://plot.ly/dash/gallery/yield-curve/) - Adapted from NYTimes's excellent [A 3-D View of a Chart That Predicts The Economic Future: The Yield Curve](https://www.nytimes.com/interactive/2015/03/19/upshot/3d-yield-curve-economic-growth.html). [Source Code.](https://github.com/plotly/dash-yield-curve) - [Finding Bigfoot](https://bigfoot-sightings-dash.herokuapp.com/) - Several plots (including a map), a grid layout built with Bootstrap, interactions with an input field, and caching (See also [Tutorials](#tutorials)). [Source Code.](https://github.com/timothyrenner/bigfoot-dash-app) From a3c41032136ec56f5fbe01aae11575d0b83aa063 Mon Sep 17 00:00:00 2001 From: Timothy Renner Date: Sun, 4 Dec 2022 14:13:25 -0600 Subject: [PATCH 22/25] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index faaf9cb..d8cf7a2 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ A curated list of awesome Dash (plotly) resources - [Using Plotly’s Dash to deliver public sector decision support dashboards](https://medium.com/a-r-g-o/using-plotlys-dash-to-deliver-public-sector-decision-support-dashboards-ac863fa829fb) - Buiding a complex dashboard step-by-step. - [OPS CodeDay: Dash Plotly Map + Graph](https://radumas.info/blog/tutorial/2017/08/10/codeday.html) - How to use Jupyter notebooks in tandom with Dash to create mapping viz. - [Creating Interactive Visualizations with Plotly’s Dash Framework](http://pbpython.com/plotly-dash-intro.html) - High level overview of how to get started with Dash. -- [Finding Bigfoot with Dash, Part 1](https://timothyrenner.github.io/datascience/2017/08/08/finding-bigfoot-with-dash-part-1.html) - Walkthrough of building a dashboard of Bigfoot sightings. [Part 2](https://timothyrenner.github.io/datascience/2017/08/09/finding-bigfoot-with-dash-part-2.html), [Part 3](https://timothyrenner.github.io/datascience/2017/08/10/finding-bigfoot-with-dash-part-3.html). +- [Finding Bigfoot with Dash, Part 1](https://timothyrenner.github.io/posts/bigfoot-with-dash-part-1/) - Walkthrough of building a dashboard of Bigfoot sightings. [Part 2](https://timothyrenner.github.io/posts/bigfoot-with-dash-part-2), [Part 3](https://timothyrenner.github.io/posts/bigfoot-with-dash-part-3/). - [Visualize Earthquakes with Plotly Dash](https://www.giacomodebidda.com/visualize-earthquakes-with-plotly-dash/) - Environmental scan of alternatives to Dash followed with a tutorial. - [ARGO Labs - Plotly Dash Tutorial (Video)](https://www.youtube.com/watch?v=yfWJXkySfe0) - Detailed introduction to creating interactive dashboards. - [Data Visualization GUIs with Dash and Python (Video playlist)](https://www.youtube.com/watch?v=J_Cy_QjG6NE&list=PLQVvvaa0QuDfsGImWNt1eUEveHOepkjqt) - Five-part series exploring Dash features. From fafe703e59507eaafed87b8270a322c191bb7ad5 Mon Sep 17 00:00:00 2001 From: Stefan Binder Date: Wed, 25 Sep 2024 23:24:19 +0200 Subject: [PATCH 23/25] Add dash-vega-components (#45) * Add dash-vega-components * Add point --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index d8cf7a2..fa863f4 100644 --- a/README.md +++ b/README.md @@ -64,6 +64,7 @@ A curated list of awesome Dash (plotly) resources - [dash-uploader](https://github.com/np-8/dash-uploader) - Upload component for Dash. Supports large data files. - [Dash Mantine Components](https://github.com/snehilvj/dash-mantine-components) - Collection of 40+ Dash components based on Mantine React Components library. - [plotly-resampler](https://github.com/predict-idlab/plotly-resampler) - Wrapper for plotly figures that adds data downsampling (aggregating) functionality, enabling the visualization of large datasets. +- [dash-vega-components](https://github.com/altair-viz/dash-vega-components) - Dash component for Vega-Altair, Vega-Lite, and Vega charts. ## App Examples - [Oil and Gas Explorer](https://plot.ly/dash/gallery/new-york-oil-and-gas/) - Explore oil and gas production over time and with linked visualisations. [Source Code.](https://github.com/plotly/dash-oil-and-gas-demo) From 31699173282ac7b5ee876db0c9dbbaa7982c56da Mon Sep 17 00:00:00 2001 From: Eduardo Blancas Date: Fri, 4 Oct 2024 13:24:13 -0600 Subject: [PATCH 24/25] adds deployment section + new components (#46) --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index fa863f4..f8f08b5 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,7 @@ A curated list of awesome Dash (plotly) resources > Written on top of Flask, Plotly.js, and React.js, Dash is ideal for building data visualization apps with highly custom user interfaces in pure Python. It's particularly suited for anyone who works with data in Python. ## Contents +- [Deployment](#deployment) - [Tutorials](#tutorials) - [Component Libraries](#component-libraries) - [App Examples](#app-examples) @@ -20,6 +21,10 @@ A curated list of awesome Dash (plotly) resources - [Community](#community) - [Contributors](#contributors) +## Deployment + +- [Ploomber Cloud](https://ploomber.io) - The community plan allows free deployments + ## Tutorials - [Introducing Plotly Dash](https://medium.com/@plotlygraphs/introducing-dash-5ecf7191b503) - A high level introduction to Dash by Chris Parmer, the author of Dash. This essay was released as part of Dash's official launch (June 21, 2017). - [Plotly's tutorials - Part 1: App Layout](https://plot.ly/dash/getting-started) @@ -42,6 +47,13 @@ A curated list of awesome Dash (plotly) resources - [An introduction to Dash DataTable](https://www.youtube.com/watch?v=dueejcyrYh8) - Official introduction video to the Dash DataTable components. ## Component Libraries + +- [Dash PDF](https://github.com/ploomber/dash-pdf) - Display inline PDFs +- [Dash MUI](https://github.com/ploomber/dash-mui) - Material UI components +- [Dash React Simple Maps](https://github.com/ploomber/dash-react-simple-maps) - Create interactive maps +- [Dash Mosaic](https://github.com/ploomber/mosaic-python#dash-mosaic) - Display [Mosaic](https://github.com/uwdata/mosaic) plots +- [Dash Tabler Icons](https://github.com/ploomber/dash-tabler-icons) - Beautiful icons for your Dash apps +- [Dash React Syntax Highlighter](https://github.com/ploomber/dash-react-syntax-highlighter) - Display code snippets with a copy button - [Tutorial on creating custom Dash components with React.js.](https://plot.ly/dash/plugins) - [Dash Bio Components](https://dash.plot.ly/dash-bio) - Suite of bioinformatics components that make it simpler to analyze and visualize bioinformatics data and interact with them in a Dash application. - [Dash Canvas Components](https://dash.plot.ly/canvas) - Module for image annotation and image processing using Dash. @@ -118,6 +130,7 @@ A curated list of awesome Dash (plotly) resources - [vaexio](https://github.com/vaexio) - [Fanchao MENG](https://github.com/pingf) - [Snehil Vijay](https://github.com/snehilvj) +- [Eduardo Blancas](https://github.com/edublancas) ## License [![CC0](http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg)](https://creativecommons.org/publicdomain/zero/1.0/)
This work is licensed under a Creative Commons Attribution 4.0 International License. From 3635061719092e805c3ac6d01bd14bf93bdc0c9c Mon Sep 17 00:00:00 2001 From: Pip Install Python <120129682+pip-install-python@users.noreply.github.com> Date: Wed, 16 Oct 2024 16:30:31 -0500 Subject: [PATCH 25/25] Update README.md Organized the file's context by alphabetical order. Added some other tutorials, components and a dash book to the README.md --- README.md | 114 +++++++++++++++++++++++++++++------------------------- 1 file changed, 62 insertions(+), 52 deletions(-) diff --git a/README.md b/README.md index f8f08b5..610518b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Awesome Dash [![Awesome](https://awesome.re/badge-flat.svg)](https://github.com/sindresorhus/awesome) -[](https://plot.ly/products/dash/) +[](https://plot.ly/products/dash/) A curated list of awesome Dash (plotly) resources @@ -26,91 +26,99 @@ A curated list of awesome Dash (plotly) resources - [Ploomber Cloud](https://ploomber.io) - The community plan allows free deployments ## Tutorials +- [An introduction to Dash DataTable](https://www.youtube.com/watch?v=dueejcyrYh8) - Official introduction video to the Dash DataTable components. +- [ARGO Labs - Plotly Dash Tutorial (Video)](https://www.youtube.com/watch?v=yfWJXkySfe0) - Detailed introduction to creating interactive dashboards. +- [Charming Data YouTube channel](https://www.youtube.com/charmingdata) - A channel dedicated to teaching Dash and Plotly with over 25k subscribers. +- [Creating Interactive Visualizations with Plotly’s Dash Framework](http://pbpython.com/plotly-dash-intro.html) - High level overview of how to get started with Dash. +- [Dash Cytoscape Component](https://www.youtube.com/watch?v=snXcIsCMQgk) - Official introduction video to the Dash Cytoscape components. +- [Data Visualization GUIs with Dash and Python (Video playlist)](https://www.youtube.com/watch?v=J_Cy_QjG6NE&list=PLQVvvaa0QuDfsGImWNt1eUEveHOepkjqt) - Five-part series exploring Dash features. +- [Finding Bigfoot with Dash, Part 1](https://timothyrenner.github.io/posts/bigfoot-with-dash-part-1/) - Walkthrough of building a dashboard of Bigfoot sightings. [Part 2](https://timothyrenner.github.io/posts/bigfoot-with-dash-part-2), [Part 3](https://timothyrenner.github.io/posts/bigfoot-with-dash-part-3/). +- [Interactive Image Processing with Dash-Canvas](https://www.youtube.com/watch?v=LKXSFBB5ccI) - Official introduction video to the Dash Canvas components. +- [Interactive Visualization of Machine Learning and Computer Vision with Dash](https://www.youtube.com/watch?v=3F5AR-uUqJc) - Official introduction video. +- [Interactive Web-Based Dashboards in Python](https://alysivji.github.io/reactive-dashboards-with-dash.html) - How the MVC model pertains to Dash and a walkthrough of building an app. - [Introducing Plotly Dash](https://medium.com/@plotlygraphs/introducing-dash-5ecf7191b503) - A high level introduction to Dash by Chris Parmer, the author of Dash. This essay was released as part of Dash's official launch (June 21, 2017). +- [OPS CodeDay: Dash Plotly Map + Graph](https://radumas.info/blog/tutorial/2017/08/10/codeday.html) - How to use Jupyter notebooks in tandem with Dash to create mapping viz. - [Plotly's tutorials - Part 1: App Layout](https://plot.ly/dash/getting-started) - [Plotly's tutorials - Part 2: Interactivity](https://plot.ly/dash/getting-started-part-2) - [Plotly's tutorials - Part 3: Interactive Graphing](https://plot.ly/dash/interactive-graphing) - [Plotly's tutorials - Part 4: Callbacks With State](https://plot.ly/dash/state) -- [Charming Data YouTube channel](https://www.youtube.com/charmingdata) - A channel dedicated to teaching Dash and Plotly with over 25k subscribers. -- [Interactive Web-Based Dashboards in Python](https://alysivji.github.io/reactive-dashboards-with-dash.html) - How the MVC model pertains to Dash and a walkthrough of building an app. -- [Using Plotly’s Dash to deliver public sector decision support dashboards](https://medium.com/a-r-g-o/using-plotlys-dash-to-deliver-public-sector-decision-support-dashboards-ac863fa829fb) - Buiding a complex dashboard step-by-step. -- [OPS CodeDay: Dash Plotly Map + Graph](https://radumas.info/blog/tutorial/2017/08/10/codeday.html) - How to use Jupyter notebooks in tandom with Dash to create mapping viz. -- [Creating Interactive Visualizations with Plotly’s Dash Framework](http://pbpython.com/plotly-dash-intro.html) - High level overview of how to get started with Dash. -- [Finding Bigfoot with Dash, Part 1](https://timothyrenner.github.io/posts/bigfoot-with-dash-part-1/) - Walkthrough of building a dashboard of Bigfoot sightings. [Part 2](https://timothyrenner.github.io/posts/bigfoot-with-dash-part-2), [Part 3](https://timothyrenner.github.io/posts/bigfoot-with-dash-part-3/). +- [Pip Install Python](https://www.youtube.com/@pipinstallpython) - Youtube channel focused on Python, Plotly, Dash & Django. +- [Tutorial on creating custom Dash components with React.js.](https://plot.ly/dash/plugins) +- [Using Plotly’s Dash to deliver public sector decision support dashboards](https://medium.com/a-r-g-o/using-plotlys-dash-to-deliver-public-sector-decision-support-dashboards-ac863fa829fb) - Building a complex dashboard step-by-step. - [Visualize Earthquakes with Plotly Dash](https://www.giacomodebidda.com/visualize-earthquakes-with-plotly-dash/) - Environmental scan of alternatives to Dash followed with a tutorial. -- [ARGO Labs - Plotly Dash Tutorial (Video)](https://www.youtube.com/watch?v=yfWJXkySfe0) - Detailed introduction to creating interactive dashboards. -- [Data Visualization GUIs with Dash and Python (Video playlist)](https://www.youtube.com/watch?v=J_Cy_QjG6NE&list=PLQVvvaa0QuDfsGImWNt1eUEveHOepkjqt) - Five-part series exploring Dash features. -- [Interactive Visualization of Machine Learning and Computer Vision with Dash](https://www.youtube.com/watch?v=3F5AR-uUqJc) - Official introduction video. - [Webinar: Converting React components to Dash components](https://www.youtube.com/watch?v=wifoPPRgG_I) - Official tutorial about how to convert React components to Dash components using the Dash Component Boilerplate cookiecutter template. -- [Interactive Image Processing with Dash-Canvas](https://www.youtube.com/watch?v=LKXSFBB5ccI) - Official introduction video to the Dash Canvas components. -- [Dash Cytoscape Component](https://www.youtube.com/watch?v=snXcIsCMQgk) - Official introduction video to the Dash Cytoscape components. -- [An introduction to Dash DataTable](https://www.youtube.com/watch?v=dueejcyrYh8) - Official introduction video to the Dash DataTable components. - + ## Component Libraries -- [Dash PDF](https://github.com/ploomber/dash-pdf) - Display inline PDFs -- [Dash MUI](https://github.com/ploomber/dash-mui) - Material UI components -- [Dash React Simple Maps](https://github.com/ploomber/dash-react-simple-maps) - Create interactive maps -- [Dash Mosaic](https://github.com/ploomber/mosaic-python#dash-mosaic) - Display [Mosaic](https://github.com/uwdata/mosaic) plots -- [Dash Tabler Icons](https://github.com/ploomber/dash-tabler-icons) - Beautiful icons for your Dash apps -- [Dash React Syntax Highlighter](https://github.com/ploomber/dash-react-syntax-highlighter) - Display code snippets with a copy button -- [Tutorial on creating custom Dash components with React.js.](https://plot.ly/dash/plugins) +- [Awesome React](https://github.com/enaqx/awesome-react) - Helpful resources for developing React.js components. +- [Awesome React Components](https://github.com/brillout/awesome-react-components) - Catalog of React.js components potentially interesting to be wrapped into Dash components. - [Dash Bio Components](https://dash.plot.ly/dash-bio) - Suite of bioinformatics components that make it simpler to analyze and visualize bioinformatics data and interact with them in a Dash application. +- [Dash Bootstrap Components](https://dash-bootstrap-components.opensource.asidatascience.com/) - Layout engine, default styles and high-level components based on Bootstrap. - [Dash Canvas Components](https://dash.plot.ly/canvas) - Module for image annotation and image processing using Dash. -- [Awesome React Components](https://github.com/brillout/awesome-react-components) - Catalog of React.js components potentially interesting to be wrapped into Dash components. -- [Awesome React](https://github.com/enaqx/awesome-react) - Helpful resources for developing React.js components. +- [Dash Color Picker](https://github.com/vivekvs1/dash-color-picker) - Wrapper around react-color. - [Dash Core Components](https://github.com/plotly/dash-core-components) - [Dash Cytoscape Component](https://dash.plot.ly/cytoscape) - Graph visualization component for creating easily customizable, high-performance, interactive, and web-based networks. -- [Dash DataTable Component](https://dash.plot.ly/datatable) - Interactive table that supports rich styling, conditional formatting, editing, sorting, filtering, and more. - [Dash DAQ Components](https://dash.plot.ly/dash-daq) - Set of controls that make it simpler to integrate data acquisition and controls into your Dash applications. +- [Dash DataTable Component](https://dash.plot.ly/datatable) - Interactive table that supports rich styling, conditional formatting, editing, sorting, filtering, and more. - [Dash ECharts Components](https://github.com/mergeforward/dash_echarts) - ECharts(V5) Components for Dash. +- [Dash Extensions](https://www.dash-extensions.com/) - collection of utility functions, syntax extensions, and Dash components that aim to improve the Dash development experience +- [Dash Flexbox Grid](https://github.com/pikhovkin/dash-flexbox-grid) - Wrapper around react-flexbox-grid for Plotly Dash. - [Dash HTML Components](https://github.com/plotly/dash-html-components) +- [Dash Leaflet](https://www.dash-leaflet.com/) - Light wrapper around React-Leaflet allowing developers the ability to create interactive maps in Dash. +- [Dash Mantine Components](https://github.com/snehilvj/dash-mantine-components) - Collection of 40+ Dash components based on Mantine React Components library. +- [Dash Mosaic](https://github.com/ploomber/mosaic-python#dash-mosaic) - Display [Mosaic](https://github.com/uwdata/mosaic) plots. +- [Dash MUI](https://github.com/ploomber/dash-mui) - Material UI components. +- [Dash PDF](https://github.com/ploomber/dash-pdf) - Display inline PDFs. +- [Dash React Simple Maps](https://github.com/ploomber/dash-react-simple-maps) - Create interactive maps. +- [Dash React Syntax Highlighter](https://github.com/ploomber/dash-react-syntax-highlighter) - Display code snippets with a copy button. +- [Dash Tabler Icons](https://github.com/ploomber/dash-tabler-icons) - Beautiful icons for your Dash apps. +- [Dash Uploader](https://github.com/np-8/dash-uploader) - Upload component for Dash. Supports large data files. +- [Dash Vega Components](https://github.com/altair-viz/dash-vega-components) - Dash component for Vega-Altair, Vega-Lite, and Vega charts. +- [dj-plotly-dash](https://github.com/pikhovkin/dj-plotly-dash) - Plotly Dash fork for Django. - [mydcc](https://github.com/jimmybow/mydcc) - Extension of Dash Core Components. +- [plotly-resampler](https://github.com/predict-idlab/plotly-resampler) - Wrapper for plotly figures that adds data downsampling (aggregating) functionality, enabling the visualization of large datasets. +- [pip-install-python](https://pip-install-python.com) - 15+ Custom Components, Dash Swiper, Dash Summernote, Dash Insta Stories, Dash Image Gallery, Full-Calendar-Component, Dash Emoji Mart, Dash Dynamic Grid Layout, Dash Discord, Dash Pannellum, Dash Nivo, Dash Charty, Dash Credit Cards - [sd-material-ui](https://github.com/StratoDem/sd-material-ui) - StratoDem Analytics implementations of material-ui components for Dash. - [sd-range-slider](https://github.com/StratoDem/sd-range-slider) - Range Slider Dash component. -- [dj-plotly-dash](https://github.com/pikhovkin/dj-plotly-dash) - Plotly Dash fork for Django. -- [dash-flexbox-grid](https://github.com/pikhovkin/dash-flexbox-grid) - Wrapper around react-flexbox-grid for Plotly Dash. -- [dash-color-picker](https://github.com/vivekvs1/dash-color-picker) - Wrapper around react-color. -- [dash-dual-listbox](https://github.com/vivekvs1/dash-dual-listbox) - Wrapper around react-duallist. -- [dash-bootstrap-components](https://dash-bootstrap-components.opensource.asidatascience.com/) - Layout engine, default styles and high-level components based on Bootstrap. -- [dash-uploader](https://github.com/np-8/dash-uploader) - Upload component for Dash. Supports large data files. -- [Dash Mantine Components](https://github.com/snehilvj/dash-mantine-components) - Collection of 40+ Dash components based on Mantine React Components library. -- [plotly-resampler](https://github.com/predict-idlab/plotly-resampler) - Wrapper for plotly figures that adds data downsampling (aggregating) functionality, enabling the visualization of large datasets. -- [dash-vega-components](https://github.com/altair-viz/dash-vega-components) - Dash component for Vega-Altair, Vega-Lite, and Vega charts. + ## App Examples -- [Oil and Gas Explorer](https://plot.ly/dash/gallery/new-york-oil-and-gas/) - Explore oil and gas production over time and with linked visualisations. [Source Code.](https://github.com/plotly/dash-oil-and-gas-demo) -- [Uber Rides](https://plot.ly/dash/gallery/uber-rides/) - Displays all of the Uber rides in New York City in 2014. Pandas on the backend filters a 0.5gig datafile. [Source Code.](https://github.com/plotly/dash-uber-rides-demo) -- [Simple Stock Tickers](https://plot.ly/dash/gallery/stock-tickers/) - Queries data from Google Finance and displays the results as candlestick charts. [Source Code.](https://github.com/plotly/dash-stock-tickers-demo-app) -- [Volatility Surface Explorer](https://plot.ly/dash/gallery/volatility-surface) - Fetches CBOE options chain data from Yahoo Finance with Pandas Datareader and calculates the implied volatility of each option visualised in a 3D mesh chart. [Source Code.](https://github.com/plotly/dash-volatility-surface) +- [3D Yield Curve](https://plot.ly/dash/gallery/yield-curve/) - Adapted from NYTimes's excellent [A 3-D View of a Chart That Predicts The Economic Future: The Yield Curve](https://www.nytimes.com/interactive/2015/03/19/upshot/3d-yield-curve-economic-growth.html). [Source Code.](https://github.com/plotly/dash-yield-curve) - [Drug Discovery](https://plot.ly/dash/gallery/drug-explorer/) - Displays a description of the drug as you hover over points in the graph. [Source Code.](https://github.com/plotly/dash-drug-discovery-demo/) +- [Finding Bigfoot](https://bigfoot-sightings-dash.herokuapp.com/) - Several plots (including a map), a grid layout built with Bootstrap, interactions with an input field, and caching (See also [Tutorials](#tutorials)). [Source Code.](https://github.com/timothyrenner/bigfoot-dash-app) +- [GutenSearch](https://gutensearch.com/) - Look inside the books of Project Gutenberg. [Source Code.](https://github.com/cordb/gutensearch) - [Live Wind Streaming](https://plot.ly/dash/gallery/live-wind-data/) - Continually queries a SQL database and displays live charts of wind speed and wind direction. [Source Code.](https://github.com/plotly/dash-sample-apps/tree/main/apps/dash-wind-streaming) +- [New York Taxi Rides](https://dash.vaex.io/) - A full year of the YellowCab Taxi company data from their prime, numbering well over 100 million trips. Dash + Vaex dataframe with over a 100 million rows. [Source Code.](https://github.com/vaexio/dash-120million-taxi-app) +- [Oil and Gas Explorer](https://plot.ly/dash/gallery/new-york-oil-and-gas/) - Explore oil and gas production over time and with linked visualisations. [Source Code.](https://github.com/plotly/dash-oil-and-gas-demo) - [Recession in 255 Charts](https://plot.ly/dash/gallery/recession-report/) - Adapted from NYTimes's excellent [How the Recession Reshaped the Economy in 255 Charts](https://www.nytimes.com/interactive/2014/06/05/upshot/how-the-recession-reshaped-the-economy-in-255-charts.html). [Source Code.](https://github.com/plotly/dash-recession-report-demo) -- [3D Yield Curve](https://plot.ly/dash/gallery/yield-curve/) - Adapted from NYTimes's excellent [A 3-D View of a Chart That Predicts The Economic Future: The Yield Curve](https://www.nytimes.com/interactive/2015/03/19/upshot/3d-yield-curve-economic-growth.html). [Source Code.](https://github.com/plotly/dash-yield-curve) -- [Finding Bigfoot](https://bigfoot-sightings-dash.herokuapp.com/) - Several plots (including a map), a grid layout built with Bootstrap, interactions with an input field, and caching (See also [Tutorials](#tutorials)). [Source Code.](https://github.com/timothyrenner/bigfoot-dash-app) -- [Visualize Earthquakes with Plotly Dash](https://belle-croissant-54211.herokuapp.com/) - Great UI and usage of geospatial analytics with Dash. Includes [basic unit tests](https://github.com/jackdbd/dash-earthquakes/tree/master/tests). [Source Code.](https://github.com/jackdbd/dash-earthquakes) +- [Simple Stock Tickers](https://plot.ly/dash/gallery/stock-tickers/) - Queries data from Google Finance and displays the results as candlestick charts. [Source Code.](https://github.com/plotly/dash-stock-tickers-demo-app) - [Street Quality IDentification [SQUID]](https://squid-syracuse.herokuapp.com/) - Highlights poor quality roads with maps, data table and photos of the offending piece of road. [Source Code.](https://github.com/amyoshino/SQUID-Syracuse-Dashboard) -- [VoxelViz](http://lukas-snoek.com/voxelviz) - Competition winning Visualization tool for (f)MRI data-sets. [Source Code.](https://github.com/lukassnoek/VoxelViz) - [Traffic Accidents UK](https://traffic-accidents-uk.herokuapp.com/) - Explore the 140,008 traffic accidents in the UK in 2015. [Source Code.](https://github.com/richard-muir/uk-car-accidents) -- [New York Taxi Rides](https://dash.vaex.io/) - A full year of the YellowCab Taxi company data from their prime, numbering well over 100 million trips. Dash + Vaex dataframe with over a 100 million rows. [Source Code.](https://github.com/vaexio/dash-120million-taxi-app) -- [GutenSearch](https://gutensearch.com/) - Look inside the books of Project Gutenberg. [Source Code.](https://github.com/cordb/gutensearch) +- [Uber Rides](https://plot.ly/dash/gallery/uber-rides/) - Displays all of the Uber rides in New York City in 2014. Pandas on the backend filters a 0.5gig datafile. [Source Code.](https://github.com/plotly/dash-uber-rides-demo) +- [Visualize Earthquakes with Plotly Dash](https://belle-croissant-54211.herokuapp.com/) - Great UI and usage of geospatial analytics with Dash. Includes [basic unit tests](https://github.com/jackdbd/dash-earthquakes/tree/master/tests). [Source Code.](https://github.com/jackdbd/dash-earthquakes) +- [Volatility Surface Explorer](https://plot.ly/dash/gallery/volatility-surface) - Fetches CBOE options chain data from Yahoo Finance with Pandas Datareader and calculates the implied volatility of each option visualised in a 3D mesh chart. [Source Code.](https://github.com/plotly/dash-volatility-surface) +- [VoxelViz](http://lukas-snoek.com/voxelviz) - Competition winning Visualization tool for (f)MRI data-sets. [Source Code.](https://github.com/lukassnoek/VoxelViz) + ## Idiomatic examples - [Dash recipes](https://github.com/plotly/dash-recipes) - A collection of scripts and examples created of the plotly team while answering questions from the greater Dash community. ## Galleries -- [Plotly App Gallery](https://plot.ly/dash/gallery) - Plotly's collection of Dash applications. +- [Dash App Gallery](https://dash-example-index.herokuapp.com/) - Dash Examples Index +- [Dash Data Dashboards and Apps](https://www.dashboardom.com/) - Collection of data dashboards with real-life data, for various topics, as well as a few apps for online marketing built with Dash. - [Dash Recipes GitHub](https://github.com/plotly/dash-recipes) - Collection of scripts and examples created while answering questions from the greater Dash community. -- [Dash Data Dashboards and Apps](https://www.dashboardom.com/) - Collection of data dashboards with real life data, for various topics, as well as a few apps for online marketing built with Dash. +- [Plotly App Gallery](https://plot.ly/dash/gallery) - Plotly's collection of Dash applications. + ## Talks - [Dash: Data exploration web apps in pure Python](https://www.youtube.com/watch?v=eusglTlW4OA) - Chelsea Douglas, PyData DC 2018. - [Overview of Dash](https://www.youtube.com/watch?v=sea2K4AuPOk) - Chris Parmer, creator of Dash (SciPy 2017). -- [We're Launching Dash](https://www.youtube.com/watch?v=5BAthiN0htc&t=1s) - Chris Parmer, creator of Dash, speaking about the motivations behind Dash before it was launched (Plotcon NYC 2016). - [Plotly dash and data visualisation in Python, PyData, Berlin 2017](https://www.slideshare.net/vladimirkazantsev/plotly-dash-and-data-visualisation-in-python) - Volodymyr Kazantsev (slides only). +- [We're Launching Dash](https://www.youtube.com/watch?v=5BAthiN0htc&t=1s) - Chris Parmer, creator of Dash, speaking about the motivations behind Dash before it was launched (Plotcon NYC 2016). ## Books - [Interactive Dashboards and Data Apps with Plotly and Dash](https://www.amazon.com/Interactive-Dashboards-Data-Apps-Plotly-ebook/dp/B08XMW45VY): Harness the power of a fully fledged frontend web framework in Python – no JavaScript required. +- [The Book of Dash](https://nostarch.com/book-dash): Build Dashboards with Python and Plotly by Adam Schroeder, Christian Mayer, and Ann Marie Ward ## Cheat sheets - [plotly.py Cheat Sheet](https://images.plot.ly/plotly-documentation/images/python_cheat_sheet.pdf) @@ -120,17 +128,19 @@ A curated list of awesome Dash (plotly) resources - [Stack Overflow](https://stackoverflow.com/questions/tagged/plotly-dash) ## Contributors -- [Luke Singham](https://lukesingham.com/) - [Aly Sivji](https://alysivji.github.io/) - [Chris Parmer](https://github.com/chriddyp) -- [Sergey Pikhovkin](https://github.com/pikhovkin) -- [Pascal Bugnion](https://pascalbugnion.net) -- [Florian Kromer](https://github.com/fkromer) - [Elias Dabbas](https://www.dashboardom.com) -- [vaexio](https://github.com/vaexio) +- [Eduardo Blancas](https://github.com/edublancas) - [Fanchao MENG](https://github.com/pingf) +- [Florian Kromer](https://github.com/fkromer) +- [Luke Singham](https://lukesingham.com/) +- [Pascal Bugnion](https://pascalbugnion.net) +- [Pip Install Python](https://github.com/pip-install-python) +- [Sergey Pikhovkin](https://github.com/pikhovkin) - [Snehil Vijay](https://github.com/snehilvj) -- [Eduardo Blancas](https://github.com/edublancas) +- [vaexio](https://github.com/vaexio) + ## License [![CC0](http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg)](https://creativecommons.org/publicdomain/zero/1.0/)
This work is licensed under a Creative Commons Attribution 4.0 International License.