Skip to content

Commit 1220bbf

Browse files
author
Joseph Damiba
committed
removing dash-example section
1 parent 8bf3d5e commit 1220bbf

12 files changed

+0
-180
lines changed

Diff for: doc/python/3d-surface-plots.md

-15
Original file line numberDiff line numberDiff line change
@@ -163,21 +163,6 @@ fig = go.Figure(data=[
163163
fig.show()
164164
```
165165

166-
### Dash Example
167-
168-
169-
[Dash](https://plot.ly/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-3dsurfaceplot) can easily be deployed to a PaaS.
170-
171-
```python
172-
from IPython.display import IFrame
173-
IFrame(src= "https://dash-simple-apps.plotly.host/dash-3dsurfaceplot/", width="100%", height=950 ,frameBorder="0")
174-
```
175-
176-
```python
177-
from IPython.display import IFrame
178-
IFrame(src= "https://dash-simple-apps.plotly.host/dash-3dsurfaceplot/code", width="100%", height=500 ,frameBorder="0")
179-
```
180-
181166
#### Reference
182167

183168

Diff for: doc/python/bar-charts.md

-15
Original file line numberDiff line numberDiff line change
@@ -370,21 +370,6 @@ fig.show()
370370

371371
See examples of horizontal bar charts [here](https://plot.ly/python/horizontal-bar-charts/).
372372

373-
### Dash Example
374-
375-
[Dash](https://plot.ly/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-barplot) is also show below and can easily be deployed to a PaaS (platform as a service).
376-
377-
```python
378-
from IPython.display import IFrame
379-
IFrame(src= "https://dash-simple-apps.plotly.host/dash-barplot/", width="100%", height="650px", frameBorder="0")
380-
381-
```
382-
383-
```python
384-
from IPython.display import IFrame
385-
IFrame(src= "https://dash-simple-apps.plotly.host/dash-barplot/code", width="80%", height=500, frameBorder="0")
386-
```
387-
388373
### Reference
389374

390375
See https://plot.ly/python/reference/#bar for more information and chart attribute options!

Diff for: doc/python/box-plots.md

-14
Original file line numberDiff line numberDiff line change
@@ -487,20 +487,6 @@ fig.update_layout(
487487
fig.show()
488488
```
489489

490-
### Dash Example
491-
492-
[Dash](https://plot.ly/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-boxplot) can easily be deployed to a PaaS.
493-
494-
```python
495-
from IPython.display import IFrame
496-
IFrame(src= "https://dash-simple-apps.plotly.host/dash-boxplot/", width="100%", height="650px", frameBorder="0")
497-
```
498-
499-
```python
500-
from IPython.display import IFrame
501-
IFrame(src= "https://dash-simple-apps.plotly.host/dash-boxplot/code", width="100%", height=500, frameBorder="0")
502-
```
503-
504490
#### Reference
505491

506492
See https://plot.ly/python/reference/#box for more information and chart attribute options!

Diff for: doc/python/candlestick-charts.md

-15
Original file line numberDiff line numberDiff line change
@@ -143,20 +143,5 @@ fig = go.Figure(data=[go.Candlestick(x=dates,
143143
fig.show()
144144
```
145145

146-
### Dash Example
147-
148-
149-
[Dash](https://plot.ly/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-candlestickplot) can easily be deployed to a PaaS.
150-
151-
```python
152-
from IPython.display import IFrame
153-
IFrame(src= "https://dash-simple-apps.plotly.host/dash-candlestickplot/", width="100%", height="750px", frameBorder="0")
154-
```
155-
156-
```python
157-
from IPython.display import IFrame
158-
IFrame(src= "https://dash-simple-apps.plotly.host/dash-candlestickplot/code", width="100%", height=500, frameBorder="0")
159-
```
160-
161146
#### Reference
162147
For more information on candlestick attributes, see: https://plot.ly/python/reference/#candlestick

Diff for: doc/python/choropleth-maps.md

-14
Original file line numberDiff line numberDiff line change
@@ -275,20 +275,6 @@ fig.layout.template = None
275275
fig.show()
276276
```
277277

278-
### Dash Example
279-
280-
[Dash](https://plot.ly/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-choroplethplot) can easily be deployed to a PaaS.
281-
282-
```python
283-
from IPython.display import IFrame
284-
IFrame(src= "https://dash-simple-apps.plotly.host/dash-choroplethplot/", width="100%", height="950px", frameBorder="0")
285-
```
286-
287-
```python
288-
from IPython.display import IFrame
289-
IFrame(src= "https://dash-simple-apps.plotly.host/dash-choroplethplot/code", width="100%", height=500, frameBorder="0")
290-
```
291-
292278
#### Reference
293279

294280
See https://plot.ly/python/reference/#choropleth for more information and chart attribute options!

Diff for: doc/python/heatmaps.md

-15
Original file line numberDiff line numberDiff line change
@@ -162,20 +162,5 @@ fig.update_layout(
162162
fig.show()
163163
```
164164

165-
### Dash Example
166-
167-
168-
[Dash](https://plot.ly/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 can be found [here](https://github.com/plotly/simple-example-chart-apps/tree/master/dash-heatmapplot) and can easily be deployed to a PaaS.
169-
170-
```python
171-
from IPython.display import IFrame
172-
IFrame(src= "https://dash-simple-apps.plotly.host/dash-heatmapplot/", width="120%", height="650px", frameBorder="0")
173-
```
174-
175-
```python
176-
from IPython.display import IFrame
177-
IFrame(src= "https://dash-simple-apps.plotly.host/dash-heatmapplot/code", width="120%", height=500, frameBorder="0")
178-
```
179-
180165
#### Reference
181166
See https://plot.ly/python/reference/#heatmap for more information and chart attribute options!

Diff for: doc/python/histograms.md

-16
Original file line numberDiff line numberDiff line change
@@ -373,22 +373,6 @@ fig.update_layout(
373373
fig.show()
374374
```
375375

376-
### Dash Example
377-
378-
[Dash](https://plot.ly/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-histogramplot) can easily be deployed to a PaaS.
379-
380-
```python
381-
from IPython.display import IFrame
382-
IFrame(src= "https://dash-simple-apps.plotly.host/dash-histogramplot/", width="100%", height="650px", frameBorder="0")
383-
384-
```
385-
386-
```python
387-
from IPython.display import IFrame
388-
IFrame(src= "https://dash-simple-apps.plotly.host/dash-histogramplot/code", width="100%", height=500, frameBorder="0")
389-
390-
```
391-
392376
#### Reference
393377

394378
See https://plot.ly/python/reference/#histogram for more information and chart attribute options!

Diff for: doc/python/line-and-scatter.md

-15
Original file line numberDiff line numberDiff line change
@@ -274,21 +274,6 @@ fig = go.Figure(data=go.Scattergl(
274274
fig.show()
275275
```
276276

277-
### Dash Example
278-
279-
[Dash](https://plot.ly/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-linescatterplot) can easily be deployed to a PaaS.
280-
281-
```python
282-
from IPython.display import IFrame
283-
IFrame(src= "https://dash-simple-apps.plotly.host/dash-linescatterplot/", width="100%",height="750px", frameBorder="0")
284-
285-
```
286-
287-
```python
288-
from IPython.display import IFrame
289-
IFrame(src= "https://dash-simple-apps.plotly.host/dash-linescatterplot/code", width="100%",height=500, frameBorder="0")
290-
```
291-
292277
### Reference
293278

294279
See https://plot.ly/python/reference/#scatter or https://plot.ly/python/reference/#scattergl for more information and chart attribute options!

Diff for: doc/python/line-charts.md

-16
Original file line numberDiff line numberDiff line change
@@ -406,22 +406,6 @@ fig.update_traces(mode='lines')
406406
fig.show()
407407
```
408408

409-
### Dash Example
410-
411-
[Dash](https://plot.ly/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-lineplot) can easily be deployed to a PaaS.
412-
413-
```python
414-
from IPython.display import IFrame
415-
IFrame(src= "https://dash-simple-apps.plotly.host/dash-lineplot/", width="100%", height="650px", frameBorder="0")
416-
417-
```
418-
419-
```python
420-
from IPython.display import IFrame
421-
IFrame(src= "https://dash-simple-apps.plotly.host/dash-lineplot/code", width="100%", height=500, frameBorder="0")
422-
423-
```
424-
425409
#### Reference
426410

427411
See https://plot.ly/python/reference/#scatter for more information and chart attribute options!

Diff for: doc/python/pie-charts.md

-15
Original file line numberDiff line numberDiff line change
@@ -276,20 +276,5 @@ fig.show()
276276

277277
```
278278

279-
### Dash Example
280-
281-
282-
[Dash](https://plot.ly/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-pieplot) can easily be deployed to a PaaS.
283-
284-
```python
285-
from IPython.display import IFrame
286-
IFrame(src= "https://dash-simple-apps.plotly.host/dash-pieplot", width="100%", height="650px" ,frameBorder="0")
287-
```
288-
289-
```python
290-
from IPython.display import IFrame
291-
IFrame(src= "https://dash-simple-apps.plotly.host/dash-pieplot/code", width="100%", height=500 ,frameBorder="0")
292-
```
293-
294279
#### Reference
295280
See https://plot.ly/python/reference/#pie for more information and chart attribute options!

Diff for: doc/python/table.md

-15
Original file line numberDiff line numberDiff line change
@@ -210,20 +210,5 @@ fig = go.Figure(data=[go.Table(
210210
fig.show()
211211
```
212212

213-
### Dash Example
214-
215-
216-
[Dash](https://plot.ly/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-tableplot) can easily be deployed to a PaaS.
217-
218-
```python
219-
from IPython.display import IFrame
220-
IFrame(src= "https://dash-simple-apps.plotly.host/dash-tableplot/", width="100%", height="850px", frameBorder="0")
221-
```
222-
223-
```python
224-
from IPython.display import IFrame
225-
IFrame(src= "https://dash-simple-apps.plotly.host/dash-tableplot/code", width="100%", height=500, frameBorder="0")
226-
```
227-
228213
#### Reference
229214
For more information on tables and table attributes see: https://plot.ly/python/reference/#table.

Diff for: doc/python/time-series.md

-15
Original file line numberDiff line numberDiff line change
@@ -127,20 +127,5 @@ fig.update_layout(title_text='Time Series with Rangeslider',
127127
fig.show()
128128
```
129129

130-
### Dash Example
131-
132-
133-
[Dash](https://plot.ly/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-timeseriesplot) can easily be deployed to a PaaS.
134-
135-
```python
136-
from IPython.display import IFrame
137-
IFrame(src= "https://dash-simple-apps.plotly.host/dash-timeseriesplot/", width="100%", height="750px", frameBorder="0")
138-
```
139-
140-
```python
141-
from IPython.display import IFrame
142-
IFrame(src= "https://dash-simple-apps.plotly.host/dash-timeseriesplot/code", width="100%", height=500, frameBorder="0")
143-
```
144-
145130
#### Reference
146131
See https://plot.ly/python/reference/#layout-xaxis-rangeslider and<br> https://plot.ly/python/reference/#layout-xaxis-rangeselector for more information and chart attribute options!

0 commit comments

Comments
 (0)