All Projects â†’ plotly â†’ Dash Docs

plotly / Dash Docs

Licence: mit
📖 The Official Dash Userguide & Documentation

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Dash Docs

Dash Table
A First-Class Interactive DataTable for Dash
Stars: ✭ 382 (+13.02%)
Mutual labels:  data-science, plotly-dash, dash, data-visualization, plotly
Dash
Analytical Web Apps for Python, R, Julia, and Jupyter. No JavaScript Required.
Stars: ✭ 15,592 (+4513.02%)
Mutual labels:  data-science, plotly-dash, dash, data-visualization, plotly
Dash.jl
Dash for Julia - A Julia interface to the Dash ecosystem for creating analytic web applications in Julia. No JavaScript required.
Stars: ✭ 248 (-26.63%)
Mutual labels:  data-science, plotly-dash, dash, data-visualization, plotly
Dashr
Dash for R - An R interface to the Dash ecosystem for creating analytic web applications
Stars: ✭ 337 (-0.3%)
Mutual labels:  data-science, plotly-dash, dash, data-visualization, plotly
Dash Stock Tickers Demo App
Dash Demo App - Stock Tickers
Stars: ✭ 108 (-68.05%)
Mutual labels:  data-science, fintech, dash, data-visualization, plotly
Fitly
Self hosted web analytics for endurance athletes
Stars: ✭ 65 (-80.77%)
Mutual labels:  plotly-dash, dash, data-visualization, plotly
Slapdash
Boilerplate for bootstrapping scalable multi-page Dash applications
Stars: ✭ 225 (-33.43%)
Mutual labels:  plotly-dash, dash, data-visualization, plotly
Dash Oil And Gas Demo
Dash Demo App - New York Oil and Gas
Stars: ✭ 156 (-53.85%)
Mutual labels:  data-science, dash, data-visualization, plotly
Dash Cytoscape
Interactive network visualization in Python and Dash, powered by Cytoscape.js
Stars: ✭ 309 (-8.58%)
Mutual labels:  data-science, plotly-dash, dash, plotly
dash-flexbox-grid
Wrapper around react-flexbox-grid for Plotly Dash
Stars: ✭ 19 (-94.38%)
Mutual labels:  plotly, dash, plotly-dash
Py Quantmod
Powerful financial charting library based on R's Quantmod | http://py-quantmod.readthedocs.io/en/latest/
Stars: ✭ 155 (-54.14%)
Mutual labels:  data-science, data-visualization, plotly
Dtale
Visualizer for pandas data structures
Stars: ✭ 2,864 (+747.34%)
Mutual labels:  data-science, plotly-dash, data-visualization
dash-admin
CLI tool for initiating dash boilerplate
Stars: ✭ 22 (-93.49%)
Mutual labels:  plotly, dash, plotly-dash
Tablesaw
Java dataframe and visualization library
Stars: ✭ 2,785 (+723.96%)
Mutual labels:  data-science, data-visualization, plotly
dash-redis-celery-periodic-updates
Demo apps now maintained in https://github.com/plotly/dash-enterprise-docs
Stars: ✭ 47 (-86.09%)
Mutual labels:  plotly, dash, plotly-dash
Cryptocurrency Analysis Python
Open-Source Tutorial For Analyzing and Visualizing Cryptocurrency Data
Stars: ✭ 278 (-17.75%)
Mutual labels:  data-science, data-visualization, plotly
Livechart
Android library to draw beautiful and rich line charts.
Stars: ✭ 78 (-76.92%)
Mutual labels:  data-science, fintech, data-visualization
Bubbly
A python package for plotting animated and interactive bubble charts using Plotly
Stars: ✭ 37 (-89.05%)
Mutual labels:  data-science, data-visualization, plotly
React Plotly.js
A plotly.js React component from Plotly 📈
Stars: ✭ 701 (+107.4%)
Mutual labels:  fintech, data-visualization, plotly
2019-nCoV-dash
新型冠状病毒(2019-nCoV)肺炎(COVID-19)疫情展示
Stars: ✭ 13 (-96.15%)
Mutual labels:  plotly, dash, plotly-dash

Dash Userguide

The Dash Userguide: everything that you need to know to be productive with Dash.

The Dash Userguide is hosted online at: https://plotly.com/dash. A PDF version is also available.

Running an app locally

To run an app locally:

  1. (optional) create and activate new virtualenv or conda env:
pip install virtualenv
virtualenv venv
source venv/bin/activate

or, with conda:

conda create --yes -n dash_docs
source activate dash_docs
  1. pip install -r requirements.txt
  2. gunicorn --preload index:server

Alternatively, for development purposes, you can run: while true; do IGNORE_DASH_BIO=true python index.py; sleep 2; done

The while true loop restarts Dash when there's syntax errors outside of the callbacks, and IGNORE_DASH_BIO=true constant prevents the loading of heavy Dash Bio examples, which makes hotreloading faster.

  1. open http://127.0.0.1:8000 in your browser

on Windows systems waitress can be a replacement for gunicorn

  1. pip install waitress
  2. waitress-serve --listen=*:8000 index:server
  3. open http://127.0.0.1:8000 in your browser

Contributing

PRs accepted! The Dash user guide is itself a Dash app. Each file in tutorial represents a "chapter" of the docs.

Changes to master will get deployed automatically.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].