Skip to content

Commit 953e85d

Browse files
Merge pull request #2809 from ry-v1/add-pxlinks
Add pxlinks
2 parents 3e7967c + c8dc986 commit 953e85d

31 files changed

+40
-30
lines changed

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/#scatter3d-marker-line for more information and chart attribute options!
123+
See [function reference for `px.(line_3d)`](https://plotly.com/python-api-reference/generated/plotly.express.line_3d) or https://plotly.com/python/reference/scatter3d/#scatter3d-marker-line 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 [function reference for `px.scatter_3d()`](https://plotly.com/python-api-reference/generated/plotly.express.scatter_3d) or https://plotly.com/python/reference/scatter3d/ for more information and chart attribute options!

doc/python/bar-charts.md

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

495495
### Reference
496496

497-
See https://plotly.com/python/reference/bar/ for more information and chart attribute options!
497+
See [function reference for `px.bar()`](https://plotly.com/python-api-reference/generated/plotly.express.bar) or https://plotly.com/python/reference/bar/ for more information and chart attribute options!

doc/python/box-plots.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -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 [function reference for `px.box()`](https://plotly.com/python-api-reference/generated/plotly.express.box) or https://plotly.com/python/reference/box/ for more information and chart attribute options!

doc/python/bubble-maps.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -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 [function reference for `px.(scatter_geo)`](https://plotly.com/python-api-reference/generated/plotly.express.scatter_geo) or https://plotly.com/python/reference/choropleth/ and https://plotly.com/python/reference/scattergeo/ for more information and chart attribute options!

doc/python/choropleth-maps.md

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

365365
#### Reference
366366

367-
See https://plotly.com/python/reference/choropleth/ for more information and chart attribute options!
367+
See [function reference for `px.(choropleth)`](https://plotly.com/python-api-reference/generated/plotly.express.choropleth) or https://plotly.com/python/reference/choropleth/ for more information and chart attribute options!

doc/python/funnel-charts.md

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

203203
#### Reference
204204

205-
See https://plotly.com/python/reference/funnel/ and https://plotly.com/python/reference/funnelarea/ for more information and chart attribute options!
205+
See [function reference for `px.(funnel)`](https://plotly.com/python-api-reference/generated/plotly.express.funnel) or https://plotly.com/python/reference/funnel/ and https://plotly.com/python/reference/funnelarea/ for more information and chart attribute options!

doc/python/heatmaps.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,4 +190,4 @@ Arrays of rasterized values build by datashader can be visualized using
190190
plotly's heatmaps, as shown in the [plotly and datashader tutorial](/python/datashader/).
191191

192192
#### Reference
193-
See https://plotly.com/python/reference/heatmap/ for more information and chart attribute options!
193+
See [function reference for `px.(imshow)`](https://plotly.com/python-api-reference/generated/plotly.express.imshow) or https://plotly.com/python/reference/heatmap/ for more information and chart attribute options!

doc/python/histograms.md

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

395395
#### Reference
396396

397-
See https://plotly.com/python/reference/histogram/ for more information and chart attribute options!
397+
See [function reference for `px.histogram()`](https://plotly.com/python-api-reference/generated/plotly.express.histogram) or https://plotly.com/python/reference/histogram/ for more information and chart attribute options!

doc/python/imshow.md

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

402402
#### Reference
403403

404-
See https://plotly.com/python/reference/image/ for more information and chart attribute options!
404+
See [function reference for `px.(imshow)`](https://plotly.com/python-api-reference/generated/plotly.express.imshow) or https://plotly.com/python/reference/image/ for more information and chart attribute options!

doc/python/line-and-scatter.md

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

277277
### Reference
278278

279-
See https://plotly.com/python/reference/scatter/ or https://plotly.com/python/reference/scattergl/ for more information and chart attribute options!
279+
See [function reference for `px.scatter()`](https://plotly.com/python-api-reference/generated/plotly.express.scatter) or https://plotly.com/python/reference/scatter/ or https://plotly.com/python/reference/scattergl/ for more information and chart attribute options!

doc/python/line-charts.md

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

435435
#### Reference
436436

437-
See https://plotly.com/python/reference/scatter/ for more information and chart attribute options!
437+
See [function reference for `px.line()`](https://plotly.com/python-api-reference/generated/plotly.express.line) or https://plotly.com/python/reference/scatter/ for more information and chart attribute options!

doc/python/lines-on-mapbox.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -132,4 +132,5 @@ fig.show()
132132

133133
#### Reference
134134

135-
See https://plotly.com/python/reference/scattermapbox/ for more information about mapbox and their attribute options.
135+
See [function reference for `px.(line_mapbox)`](https://plotly.com/python-api-reference/generated/plotly.express.line_mapbox) or
136+
https://plotly.com/python/reference/scattermapbox/ for more information about mapbox and their attribute options.

doc/python/lines-on-maps.md

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

330330
#### Reference
331331

332-
See https://plotly.com/python/reference/scattergeo/ for more information and chart attribute options!
332+
See [function reference for `px.(line_geo)`](https://plotly.com/python-api-reference/generated/plotly.express.line_geo) or https://plotly.com/python/reference/scattergeo/ for more information and chart attribute options!

doc/python/log-plot.md

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

9696
#### Reference
9797

98-
See https://plotly.com/python/reference/layout/xaxis/#layout-xaxis-type for more information and chart attribute options!
98+
See [function reference for `px.(scatter)`](https://plotly.com/python-api-reference/generated/plotly.express.scatter) or https://plotly.com/python/reference/layout/xaxis/#layout-xaxis-type for more information and chart attribute options!

doc/python/mapbox-county-choropleth.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -230,4 +230,5 @@ fig.show()
230230

231231
#### Reference
232232

233-
See https://plotly.com/python/reference/choroplethmapbox/ for more information about mapbox and their attribute options.
233+
See [function reference for `px.(choropleth_mapbox)`](https://plotly.com/python-api-reference/generated/plotly.express.choropleth_mapbox) or https://plotly.com/python/reference/choroplethmapbox/ for more information about mapbox and their attribute options.
234+

doc/python/mapbox-density-heatmaps.md

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

7373
#### Reference
7474

75-
See https://plotly.com/python/reference/densitymapbox/ for more information about mapbox and their attribute options.
75+
See [function reference for `px.(density_mapbox)`](https://plotly.com/python-api-reference/generated/plotly.express.density_mapbox) or https://plotly.com/python/reference/densitymapbox/ for more information about mapbox and their attribute options.

doc/python/parallel-categories-diagram.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -288,4 +288,4 @@ widgets.VBox([color_toggle, fig])
288288

289289
#### Reference
290290

291-
See [reference page](https://plotly.com/python/reference/parcats/) for more information and chart attribute options!
291+
See [function reference for `px.parallel_categories()`](https://plotly.com/python-api-reference/generated/plotly.express.parallel_categories) or [reference page](https://plotly.com/python/reference/parcats/) for more information and chart attribute options!

doc/python/parallel-coordinates-plot.md

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

174174
#### Reference
175175

176-
See https://plotly.com/python/reference/parcoords/ for more information and chart attribute options!
176+
See [function reference for `px.(parallel_coordinates)`](https://plotly.com/python-api-reference/generated/plotly.express.parallel_coordinates) or https://plotly.com/python/reference/parcoords/ for more information and chart attribute options!

doc/python/pie-charts.md

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

305305
#### Reference
306306

307-
See https://plotly.com/python/reference/pie/ for more information and chart attribute options!
307+
See [function reference for `px.pie()`](https://plotly.com/python-api-reference/generated/plotly.express.pie) or https://plotly.com/python/reference/pie/ for more information and chart attribute options!

doc/python/polar-chart.md

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

439439
#### Reference
440440

441-
See https://plotly.com/python/reference/scatterpolar/ for more information and chart attribute options!
441+
See [function reference for `px.(scatter_polar)`](https://plotly.com/python-api-reference/generated/plotly.express.scatter_polar) or [function reference for `px.(line_polar)`](https://plotly.com/python-api-reference/generated/plotly.express.line_polar) or https://plotly.com/python/reference/scatterpolar/ for more information and chart attribute options!

doc/python/radar-chart.md

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

130130
#### Reference
131131

132-
See https://plotly.com/python/reference/scatterpolar/ for more information and chart attribute options!
132+
See [function reference for `px.(line_polar)`](https://plotly.com/python-api-reference/generated/plotly.express.line_polar) or https://plotly.com/python/reference/scatterpolar/ for more information and chart attribute options!

doc/python/scatter-plots-on-maps.md

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

233233
#### Reference
234234

235-
See https://plotly.com/python/reference/scattergeo/ and https://plotly.com/python/reference/layout/geo/ for more information and chart attribute options!
235+
See [function reference for `px.(scatter_geo)`](https://plotly.com/python-api-reference/generated/plotly.express.scatter_geo) or https://plotly.com/python/reference/scattergeo/ and https://plotly.com/python/reference/layout/geo/ for more information and chart attribute options!

doc/python/scattermapbox.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -247,4 +247,5 @@ fig.show()
247247

248248
#### Reference
249249

250-
See https://plotly.com/python/reference/scattermapbox/ for more information and options!
250+
See [function reference for `px.(scatter_mapbox)`](https://plotly.com/python-api-reference/generated/plotly.express.scatter_mapbox) or https://plotly.com/python/reference/scattermapbox/ for more information and options!
251+

doc/python/splom.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -289,4 +289,7 @@ fig.update_layout(title=title,
289289
hovermode='closest')
290290

291291
fig.show()
292-
```
292+
```
293+
#### Reference
294+
295+
See [function reference for `px.scatter_matrix()`](https://plotly.com/python-api-reference/generated/plotly.express.scatter_matrix) or https://plotly.com/python/reference/splom/ for more information and chart attribute options!

doc/python/strip-charts.md

+4
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,7 @@ df = px.data.tips()
5858
fig = px.strip(df, x="total_bill", y="time", color="sex", facet_col="day")
5959
fig.show()
6060
```
61+
62+
#### Reference
63+
64+
See [function reference for `px.strip()`](https://plotly.com/python-api-reference/generated/plotly.express.strip) for more information and chart attribute options!

doc/python/sunburst-charts.md

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

381381
#### Reference
382382

383-
See https://plotly.com/python/reference/sunburst/ for more information and chart attribute options!
383+
See [function reference for `px.sunburst()`](https://plotly.com/python-api-reference/generated/plotly.express.sunburst) or https://plotly.com/python/reference/sunburst/ for more information and chart attribute options!

doc/python/ternary-plots.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,4 +126,4 @@ fig.show()
126126
```
127127

128128
#### Reference
129-
See https://plotly.com/python/reference/scatterternary/ for more information and chart attribute options!
129+
See [function reference for `px.(scatter_ternary)`](https://plotly.com/python-api-reference/generated/plotly.express.scatter_ternary) or https://plotly.com/python/reference/scatterternary/ for more information and chart attribute options!

doc/python/treemaps.md

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

392392
#### Reference
393393

394-
See https://plotly.com/python/reference/treemap/ for more information and chart attribute options!
394+
See [function reference for `px.treemap()`](https://plotly.com/python-api-reference/generated/plotly.express.treemap) or https://plotly.com/python/reference/treemap/ for more information and chart attribute options!

doc/python/violin.md

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

274274
#### Reference
275275

276-
See https://plotly.com/python/reference/violin/ for more information and chart attribute options!
276+
See [function reference for `px.violin()`](https://plotly.com/python-api-reference/generated/plotly.express.violin) or https://plotly.com/python/reference/violin/ for more information and chart attribute options!

doc/python/wind-rose-charts.md

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

9292
#### Reference
9393

94-
See https://plotly.com/python/reference/barpolar/ for more information and chart attribute options!
94+
See [function reference for `px.(bar_polar)`](https://plotly.com/python-api-reference/generated/plotly.express.bar_polar) or https://plotly.com/python/reference/barpolar/ for more information and chart attribute options!

0 commit comments

Comments
 (0)