Skip to content

Commit 561570f

Browse files
merging doc-prod to master
2 parents 94a01ea + a4b600d commit 561570f

File tree

120 files changed

+519
-277
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

120 files changed

+519
-277
lines changed

.circleci/create_conda_optional_env.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,9 @@ if [ ! -d $HOME/miniconda/envs/circle_optional ]; then
1919
requests nbformat six retrying psutil pandas decorator pytest mock nose poppler xarray scikit-image ipython jupyter ipykernel ipywidgets
2020

2121
# Install orca into environment
22+
<<<<<<< HEAD
2223
$HOME/miniconda/bin/conda install --yes -n circle_optional -c plotly plotly-orca==1.3.1
24+
=======
25+
$HOME/miniconda/bin/conda install --yes -n circle_optional -c plotly plotly-orca==1.2.1
26+
>>>>>>> doc-prod
2327
fi

binder/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ networkx
1414
scikit-image
1515
datashader
1616
pyarrow
17+
cufflinks==0.17.3

doc/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ $(IPYNB_FILES): $(IPYNB_DIR)/.mapbox_token
3030
$(IPYNB_DIR)/%.ipynb: $(MD_DIR)/%.md
3131
@mkdir -p $(IPYNB_DIR)
3232
@echo "[jupytext] $<"
33+
@cat what_about_dash.md >> $<
3334
@jupytext $< --to notebook --quiet --output $@
3435

3536
$(HTML_DIR)/2019-07-03-%.html: $(IPYNB_DIR)/%.ipynb

doc/python/2D-Histogram.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ fig = go.Figure(go.Histogram2d(x=x, y=y, histnorm='probability',
7171
fig.show()
7272
```
7373
### Sharing bin settings between 2D Histograms
74-
This example shows how to use [bingroup](https://plot.ly/python/reference/#histogram-bingroup) attribute to have a compatible bin settings for both histograms. To define `start`, `end` and `size` value of x-axis and y-axis seperatly, set [ybins](https://plot.ly/python/reference/#histogram2dcontour-ybins) and `xbins`.
74+
This example shows how to use [bingroup](https://plotly.com/python/reference/#histogram-bingroup) attribute to have a compatible bin settings for both histograms. To define `start`, `end` and `size` value of x-axis and y-axis seperatly, set [ybins](https://plotly.com/python/reference/#histogram2dcontour-ybins) and `xbins`.
7575

7676
```python
7777
import plotly.graph_objects as go
@@ -170,4 +170,4 @@ fig.show()
170170
```
171171

172172
#### Reference
173-
See https://plot.ly/python/reference/#histogram2d for more information and chart attribute options!
173+
See https://plotly.com/python/reference/#histogram2d for more information and chart attribute options!

doc/python/2d-histogram-contour.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,4 +185,4 @@ fig.show()
185185
```
186186

187187
#### Reference
188-
See https://plot.ly/python/reference/#histogram2dcontour for more information and chart attribute options!
188+
See https://plotly.com/python/reference/#histogram2dcontour for more information and chart attribute options!

doc/python/3d-axes.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jupyter:
3939
attributes such as `xaxis`, `yaxis` and `zaxis` parameters, in order to
4040
set the range, title, ticks, color etc. of the axes.
4141

42-
For creating 3D charts, see [this page](https://plot.ly/python/3d-charts/).
42+
For creating 3D charts, see [this page](https://plotly.com/python/3d-charts/).
4343

4444
```python
4545
import plotly.graph_objects as go
@@ -141,7 +141,7 @@ fig.show()
141141
import plotly.graph_objects as go
142142
import numpy as np
143143

144-
# Define random surface
144+
# Define random surface
145145
N = 50
146146
fig = go.Figure(data=[go.Mesh3d(x=(60*np.random.randn(N)),
147147
y=(25*np.random.randn(N)),
@@ -150,7 +150,7 @@ fig = go.Figure(data=[go.Mesh3d(x=(60*np.random.randn(N)),
150150
color='rgba(100,22,200,0.5)'
151151
)])
152152

153-
# Different types of customized ticks
153+
# Different types of customized ticks
154154
fig.update_layout(scene = dict(
155155
xaxis = dict(
156156
ticktext= ['TICKS','MESH','PLOTLY','PYTHON'],
@@ -184,7 +184,7 @@ fig = go.Figure(data=[go.Mesh3d(x=(30*np.random.randn(N)),
184184
opacity=0.5,)])
185185

186186

187-
# xaxis.backgroundcolor is used to set background color
187+
# xaxis.backgroundcolor is used to set background color
188188
fig.update_layout(scene = dict(
189189
xaxis = dict(
190190
backgroundcolor="rgb(200, 200, 230)",

doc/python/3d-bubble-charts.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ fig = go.Figure(data=go.Scatter3d(
108108
mode = 'markers',
109109
marker = dict(
110110
sizemode = 'diameter',
111-
sizeref = 750, # info on sizeref: https://plot.ly/python/reference/#scatter-marker-sizeref
111+
sizeref = 750, # info on sizeref: https://plotly.com/python/reference/#scatter-marker-sizeref
112112
size = planet_diameter,
113113
color = planet_colors,
114114
)
@@ -147,7 +147,7 @@ fig = go.Figure(go.Scatter3d(
147147
mode = 'markers',
148148
marker = dict(
149149
sizemode = 'diameter',
150-
sizeref = 750, # info on sizeref: https://plot.ly/python/reference/#scatter-marker-sizeref
150+
sizeref = 750, # info on sizeref: https://plotly.com/python/reference/#scatter-marker-sizeref
151151
size = planet_diameter,
152152
color = temperatures,
153153
colorbar_title = 'Mean<br>Temperature',
@@ -167,4 +167,4 @@ fig.show()
167167

168168
#### Reference
169169

170-
See https://plot.ly/python/reference/#scatter3d and https://plot.ly/python/reference/#scatter-marker-sizeref <br>for more information and chart attribute options!
170+
See https://plotly.com/python/reference/#scatter3d and https://plotly.com/python/reference/#scatter-marker-sizeref <br>for more information and chart attribute options!

doc/python/3d-camera-controls.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,4 +290,4 @@ fig.show()
290290
#### Reference
291291

292292

293-
See https://plot.ly/python/reference/#layout-scene-camera for more information and chart attribute options!
293+
See https://plotly.com/python/reference/#layout-scene-camera for more information and chart attribute options!

doc/python/3d-isosurface-plots.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,5 +235,5 @@ fig.show()
235235
```
236236

237237
#### Reference
238-
See https://plot.ly/python/reference/#isosurface for more information and chart attribute options!
238+
See https://plotly.com/python/reference/#isosurface for more information and chart attribute options!
239239

doc/python/3d-line-plots.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,4 +120,4 @@ fig.show()
120120

121121
#### Reference
122122

123-
See https://plot.ly/python/reference/#scatter3d-marker-line for more information and chart attribute options!
123+
See https://plotly.com/python/reference/#scatter3d-marker-line for more information and chart attribute options!

0 commit comments

Comments
 (0)