From a7a34a4c729bde69b53f75306fa41a011beff66a Mon Sep 17 00:00:00 2001 From: Joseph Damiba Date: Sat, 23 May 2020 16:21:09 -0400 Subject: [PATCH] remove section --- doc/python/3d-scatter-plots.md | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/doc/python/3d-scatter-plots.md b/doc/python/3d-scatter-plots.md index eedc437f719..da835543c42 100644 --- a/doc/python/3d-scatter-plots.md +++ b/doc/python/3d-scatter-plots.md @@ -120,20 +120,6 @@ fig.update_layout(margin=dict(l=0, r=0, b=0, t=0)) fig.show() ``` -### Dash App - -[Dash](https://plotly.com/products/dash/) is an Open Source Python library which can help you convert plotly figures into a reactive, web-based application. Below is a simple example of a dashboard created using Dash. Its [source code](https://github.com/plotly/simple-example-chart-apps/tree/master/dash-3dscatterplot) can easily be deployed to a PaaS. - -```python -from IPython.display import IFrame -IFrame(src= "https://dash-simple-apps.plotly.host/dash-3dscatterplot/", width="100%", height="950px",frameBorder="0") -``` - -```python -from IPython.display import IFrame -IFrame(src= "https://dash-simple-apps.plotly.host/dash-3dscatterplot/code", width="100%", height="500px",frameBorder="0") -``` - #### Reference See https://plotly.com/python/reference/#scatter3d for more information and chart attribute options!