Skip to content

Commit 33da55b

Browse files
fix internal reference links
1 parent befd6af commit 33da55b

Some content is hidden

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

83 files changed

+157
-157
lines changed

doc/python/2D-Histogram.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ fig = go.Figure(go.Histogram2d(x=x, y=y, histnorm='probability',
137137
fig.show()
138138
```
139139
### Sharing bin settings between 2D Histograms
140-
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`.
140+
This example shows how to use [bingroup](https://plotly.com/python/reference/histogram/#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/#histogram2dcontour-ybins) and `xbins`.
141141

142142
```python
143143
import plotly.graph_objects as go
@@ -236,4 +236,4 @@ fig.show()
236236
```
237237

238238
#### Reference
239-
See https://plotly.com/python/reference/#histogram2d for more information and chart attribute options!
239+
See https://plotly.com/python/reference/histogram2d/ for more information and chart attribute options!

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -249,4 +249,4 @@ fig.show()
249249
```
250250

251251
#### Reference
252-
See https://plotly.com/python/reference/#histogram2dcontour for more information and chart attribute options!
252+
See https://plotly.com/python/reference/histogram2dcontour/ for more information and chart attribute options!

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ fig = go.Figure(data=go.Scatter3d(
107107
mode = 'markers',
108108
marker = dict(
109109
sizemode = 'diameter',
110-
sizeref = 750, # info on sizeref: https://plotly.com/python/reference/#scatter-marker-sizeref
110+
sizeref = 750, # info on sizeref: https://plotly.com/python/reference/scatter/#scatter-marker-sizeref
111111
size = planet_diameter,
112112
color = planet_colors,
113113
)
@@ -146,7 +146,7 @@ fig = go.Figure(go.Scatter3d(
146146
mode = 'markers',
147147
marker = dict(
148148
sizemode = 'diameter',
149-
sizeref = 750, # info on sizeref: https://plotly.com/python/reference/#scatter-marker-sizeref
149+
sizeref = 750, # info on sizeref: https://plotly.com/python/reference/scatter/#scatter-marker-sizeref
150150
size = planet_diameter,
151151
color = temperatures,
152152
colorbar_title = 'Mean<br>Temperature',
@@ -166,4 +166,4 @@ fig.show()
166166

167167
#### Reference
168168

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -290,4 +290,4 @@ fig.show()
290290
#### Reference
291291

292292

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,4 +235,4 @@ fig.show()
235235
```
236236

237237
#### Reference
238-
See https://plotly.com/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!

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,4 +120,4 @@ fig.show()
120120

121121
#### Reference
122122

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

doc/python/3d-mesh.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,4 +163,4 @@ fig.show()
163163
```
164164

165165
## Reference
166-
See https://plotly.com/python/reference/#mesh3d for more information and chart attribute options!
166+
See https://plotly.com/python/reference/mesh3d/ for more information and chart attribute options!

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,4 +122,4 @@ fig.show()
122122

123123
#### Reference
124124

125-
See https://plotly.com/python/reference/#scatter3d for more information and chart attribute options!
125+
See https://plotly.com/python/reference/scatter3d/ for more information and chart attribute options!

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ fig.show()
7777
#### Surface Plot With Contours
7878

7979

80-
Display and customize contour data for each axis using the `contours` attribute ([reference](plotly.com/python/reference/#surface-contours)).
80+
Display and customize contour data for each axis using the `contours` attribute ([reference](plotly.com/python/reference/surface/#surface-contours)).
8181

8282
```python
8383
import plotly.graph_objects as go
@@ -99,7 +99,7 @@ fig.update_layout(title='Mt Bruno Elevation', autosize=False,
9999
fig.show()
100100
```
101101
#### Configure Surface Contour Levels
102-
This example shows how to slice the surface graph on the desired position for each of x, y and z axis. [contours.x.start](https://plotly.com/python/reference/#surface-contours-x-start) sets the starting contour level value, `end` sets the end of it, and `size` sets the step between each contour level.
102+
This example shows how to slice the surface graph on the desired position for each of x, y and z axis. [contours.x.start](https://plotly.com/python/reference/surface/#surface-contours-x-start) sets the starting contour level value, `end` sets the end of it, and `size` sets the step between each contour level.
103103

104104
```python
105105
import plotly.graph_objects as go
@@ -196,4 +196,4 @@ fig.show()
196196
#### Reference
197197

198198

199-
See https://plotly.com/python/reference/#surface for more information!
199+
See https://plotly.com/python/reference/surface/ for more information!

doc/python/3d-volume.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ fig.show()
254254
```
255255

256256
#### Reference
257-
See https://plotly.com/python/reference/#volume for more information and chart attribute options!
257+
See https://plotly.com/python/reference/volume/ for more information and chart attribute options!
258258

259259
#### See also
260260
[3D isosurface documentation](/python/3d-isosurface-plots/)

doc/python/animations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Along with `data` and `layout`, `frames` can be added as a key in a figure objec
6969

7070
#### Adding Control Buttons to Animations
7171

72-
You can add play and pause buttons to control your animated charts by adding an `updatemenus` array to the `layout` of your `figure`. More information on style and placement of the buttons is available in Plotly's [`updatemenus` reference](https://plotly.com/python/reference/#layout-updatemenus).
72+
You can add play and pause buttons to control your animated charts by adding an `updatemenus` array to the `layout` of your `figure`. More information on style and placement of the buttons is available in Plotly's [`updatemenus` reference](https://plotly.com/python/reference/layout/updatemenus/).
7373
<br>
7474
The buttons are defined as follows:
7575

doc/python/annotated-heatmap.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -203,4 +203,4 @@ fig.show()
203203

204204
#### Reference
205205

206-
For more info on Plotly heatmaps, see: https://plotly.com/python/reference/#heatmap.<br> For more info on using colorscales with Plotly see: https://plotly.com/python/heatmap-and-contour-colorscales/ <br>For more info on `ff.create_annotated_heatmap()`, see the [full function reference](https://plotly.com/python-api-reference/generated/plotly.figure_factory.create_annotated_heatmap.html#plotly.figure_factory.create_annotated_heatmap)
206+
For more info on Plotly heatmaps, see: https://plotly.com/python/reference/heatmap/.<br> For more info on using colorscales with Plotly see: https://plotly.com/python/heatmap-and-contour-colorscales/ <br>For more info on `ff.create_annotated_heatmap()`, see the [full function reference](https://plotly.com/python-api-reference/generated/plotly.figure_factory.create_annotated_heatmap.html#plotly.figure_factory.create_annotated_heatmap)

doc/python/axes.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@ jupyter:
3434
thumbnail: thumbnail/axes.png
3535
---
3636

37-
This tutorial explain how to set the properties of 2-dimensional Cartesian axes, namely [`go.layout.XAxis`](/python/reference/#layout-xaxis) and [`go.layout.YAxis`](python/reference/#layout-xaxis). Other kinds of axes are described in other tutorials:
37+
This tutorial explain how to set the properties of 2-dimensional Cartesian axes, namely [`go.layout.XAxis`](/python/reference/layout/xaxis/) and [`go.layout.YAxis`](python/reference/layout/xaxis/). Other kinds of axes are described in other tutorials:
3838

39-
- [3D axes](/python/3d-axes) The axis object is [`go.layout.Scene`](/python/reference/#layout-scene)
40-
- [Polar axes](/python/polar-chart/). The axis object is [`go.layout.Polar`](/python/reference/#layout-polar)
41-
- [Ternary axes](/python/ternary-plots). The axis object is [`go.layout.Ternary`](/python/reference/#layout-ternary)
42-
- [Geo axes](/python/map-configuration/). The axis object is [`go.layout.Geo`](/python/reference/#layout-geo)
43-
- [Mapbox axes](/python/mapbox-layers/). The axis object is [`go.layout.Mapbox`](/python/reference/#layout-mapbox)
44-
- [Color axes](/python/colorscales/). The axis object is [`go.layout.Coloraxis`](/python/reference/#layout-coloraxis).
39+
- [3D axes](/python/3d-axes) The axis object is [`go.layout.Scene`](/python/reference/layout/scene/)
40+
- [Polar axes](/python/polar-chart/). The axis object is [`go.layout.Polar`](/python/reference/layout/polar/)
41+
- [Ternary axes](/python/ternary-plots). The axis object is [`go.layout.Ternary`](/python/reference/layout/ternary/)
42+
- [Geo axes](/python/map-configuration/). The axis object is [`go.layout.Geo`](/python/reference/layout/geo/)
43+
- [Mapbox axes](/python/mapbox-layers/). The axis object is [`go.layout.Mapbox`](/python/reference/layout/mapbox/)
44+
- [Color axes](/python/colorscales/). The axis object is [`go.layout.Coloraxis`](/python/reference/layout/coloraxis/).
4545

4646
**See also** the tutorials on [subplots](/python/subplots) and [multiple axes](/python/multiple-axes/).
4747

@@ -777,4 +777,4 @@ fig.show()
777777

778778
#### Reference
779779

780-
See https://plotly.com/python/reference/#layout-xaxis and https://plotly.com/python/reference/#layout-yaxis for more information and chart attribute options!
780+
See https://plotly.com/python/reference/layout/xaxis/ and https://plotly.com/python/reference/layout/yaxis/ for more information and chart attribute options!

doc/python/bar-charts.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ fig.show()
372372

373373
### Bar Chart with Sorted or Ordered Categories
374374

375-
Set `categoryorder` to `"category ascending"` or `"category descending"` for the alphanumerical order of the category names or `"total ascending"` or `"total descending"` for numerical order of values. [categoryorder](https://plotly.com/python/reference/#layout-xaxis-categoryorder) for more information. Note that sorting the bars by a particular trace isn't possible right now - it's only possible to sort by the total values. Of course, you can always sort your data _before_ plotting it if you need more customization.
375+
Set `categoryorder` to `"category ascending"` or `"category descending"` for the alphanumerical order of the category names or `"total ascending"` or `"total descending"` for numerical order of values. [categoryorder](https://plotly.com/python/reference/layout/xaxis/#layout-xaxis-categoryorder) for more information. Note that sorting the bars by a particular trace isn't possible right now - it's only possible to sort by the total values. Of course, you can always sort your data _before_ plotting it if you need more customization.
376376

377377
This example orders the bar chart alphabetically with `categoryorder: 'category ascending'`
378378

@@ -442,4 +442,4 @@ fig.show()
442442

443443
### Reference
444444

445-
See https://plotly.com/python/reference/#bar for more information and chart attribute options!
445+
See https://plotly.com/python/reference/bar/ for more information and chart attribute options!

doc/python/box-plots.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ fig.show()
134134

135135
## Box plot with go.Box
136136

137-
If Plotly Express does not provide a good starting point, it is also possible to use [the more generic `go.Box` class from `plotly.graph_objects`](/python/graph-objects/). All available options for `go.Box` are described in the reference page https://plotly.com/python/reference/#box.
137+
If Plotly Express does not provide a good starting point, it is also possible to use [the more generic `go.Box` class from `plotly.graph_objects`](/python/graph-objects/). All available options for `go.Box` are described in the reference page https://plotly.com/python/reference/box/.
138138

139139
### Basic Box Plot
140140

@@ -502,4 +502,4 @@ fig.show()
502502

503503
#### Reference
504504

505-
See https://plotly.com/python/reference/#box for more information and chart attribute options!
505+
See https://plotly.com/python/reference/box/ for more information and chart attribute options!

doc/python/bubble-charts.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ fig.show()
9191

9292
To scale the bubble size, use the attribute `sizeref`. We recommend using the following formula to calculate a `sizeref` value:<br>
9393
`sizeref = 2. * max(array of size values) / (desired maximum marker size ** 2)`<br>
94-
Note that setting 'sizeref' to a value greater than 1, decreases the rendered marker sizes, while setting 'sizeref' to less than 1, increases the rendered marker sizes. See https://plotly.com/python/reference/#scatter-marker-sizeref for more information.
95-
Additionally, we recommend setting the sizemode attribute: https://plotly.com/python/reference/#scatter-marker-sizemode to area.
94+
Note that setting 'sizeref' to a value greater than 1, decreases the rendered marker sizes, while setting 'sizeref' to less than 1, increases the rendered marker sizes. See https://plotly.com/python/reference/scatter/#scatter-marker-sizeref for more information.
95+
Additionally, we recommend setting the sizemode attribute: https://plotly.com/python/reference/scatter/#scatter-marker-sizemode to area.
9696

9797
```python
9898
import plotly.graph_objects as go
@@ -222,4 +222,4 @@ fig.show()
222222

223223
### Reference
224224

225-
See https://plotly.com/python/reference/#scatter for more information and chart attribute options!
225+
See https://plotly.com/python/reference/scatter/ for more information and chart attribute options!

doc/python/bubble-maps.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ To scale the bubble size, use the attribute sizeref. We recommend using the foll
7474

7575
Note that setting `sizeref` to a value greater than $1$, decreases the rendered marker sizes, while setting `sizeref` to less than $1$, increases the rendered marker sizes.
7676

77-
See https://plotly.com/python/reference/#scatter-marker-sizeref for more information. Additionally, we recommend setting the sizemode attribute: https://plotly.com/python/reference/#scatter-marker-sizemode to area.
77+
See https://plotly.com/python/reference/scatter/#scatter-marker-sizeref for more information. Additionally, we recommend setting the sizemode attribute: https://plotly.com/python/reference/scatter/#scatter-marker-sizemode to area.
7878

7979
```python
8080
import plotly.graph_objects as go
@@ -208,4 +208,4 @@ fig.show()
208208

209209
#### Reference
210210

211-
See https://plotly.com/python/reference/#choropleth and https://plotly.com/python/reference/#scattergeo for more information and chart attribute options!
211+
See https://plotly.com/python/reference/choropleth/ and https://plotly.com/python/reference/scattergeo/ for more information and chart attribute options!

doc/python/bullet-charts.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ fig.show()
7878
```
7979

8080
#### Custom Bullet
81-
The following example shows how to customize your charts. For more information about all possible options check our [reference page](https://plotly.com/python/reference/#indicator).
81+
The following example shows how to customize your charts. For more information about all possible options check our [reference page](https://plotly.com/python/reference/indicator/).
8282

8383
```python
8484
import plotly.graph_objects as go
@@ -167,7 +167,7 @@ fig.show()
167167
```
168168

169169
#### Reference
170-
See https://plotly.com/python/reference/#indicator for more information and chart attribute options!
170+
See https://plotly.com/python/reference/indicator/ for more information and chart attribute options!
171171

172172
```python
173173

doc/python/candlestick-charts.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,4 +144,4 @@ fig.show()
144144
```
145145

146146
#### Reference
147-
For more information on candlestick attributes, see: https://plotly.com/python/reference/#candlestick
147+
For more information on candlestick attributes, see: https://plotly.com/python/reference/candlestick/

doc/python/carpet-contour.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jupyter:
3737

3838
### Basic Carpet Plot
3939

40-
Set the `x` and `y` coorindates, using `x` and `y` attributes. If `x` coorindate values are ommitted a cheater plot will be created. To save parameter values use `a` and `b` attributes. To make changes to the axes, use `aaxis` or `baxis` attributes. For a more detailed list of axes attributes refer to [python reference](https://plotly.com/python/reference/#carpet-aaxis).
40+
Set the `x` and `y` coorindates, using `x` and `y` attributes. If `x` coorindate values are ommitted a cheater plot will be created. To save parameter values use `a` and `b` attributes. To make changes to the axes, use `aaxis` or `baxis` attributes. For a more detailed list of axes attributes refer to [python reference](https://plotly.com/python/reference/carpet/#carpet-aaxis).
4141

4242
```python
4343
import plotly.graph_objects as go
@@ -286,4 +286,4 @@ fig.show()
286286

287287
### Reference
288288

289-
See https://plotly.com/python/reference/#contourcarpet for more information and chart attribute options!
289+
See https://plotly.com/python/reference/contourcarpet/ for more information and chart attribute options!

doc/python/carpet-plot.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ fig.show()
7070

7171
### Add A and B axis
7272

73-
Use `aaxis` or `baxis` list to make changes to the axes. For a more detailed list of attributes refer to [R reference](https://plotly.com/r/reference/#carpet-aaxis).
73+
Use `aaxis` or `baxis` list to make changes to the axes. For a more detailed list of attributes refer to [R reference](https://plotly.com/r/reference/carpet/#carpet-aaxis).
7474

7575
```python inputHidden=false outputHidden=false
7676
import plotly.graph_objects as go
@@ -189,4 +189,4 @@ To add points and lines see [Carpet Scatter Plots](https://plotly.com/python/car
189189

190190
### Reference
191191

192-
See https://plotly.com/python/reference/#carpet for more information and chart attribute options!
192+
See https://plotly.com/python/reference/carpet/ for more information and chart attribute options!

doc/python/carpet-scatter.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,4 +186,4 @@ fig.show()
186186
### Reference
187187

188188

189-
See https://plotly.com/python/reference/#scattercarpet for more information and chart attribute options!
189+
See https://plotly.com/python/reference/scattercarpet/ for more information and chart attribute options!

doc/python/choropleth-maps.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -347,4 +347,4 @@ fig.show()
347347

348348
#### Reference
349349

350-
See https://plotly.com/python/reference/#choropleth for more information and chart attribute options!
350+
See https://plotly.com/python/reference/choropleth/ for more information and chart attribute options!

0 commit comments

Comments
 (0)