Skip to content

Commit 3a6250e

Browse files
authored
Broken Links (#61)
* 2D-histogram * 3d-axes * main link doesn't work * 3d-surface-plots * 3d-volume * axes * cone-plot * fixed dot-plot link * graphing-multiple-chart-types * images * interactive-html-export * legend * sankey-diagram * shapes * table fix permalink * text-and-annotations * time-series
1 parent f52f91b commit 3a6250e

17 files changed

Lines changed: 33 additions & 36 deletions

julia/2D-Histogram.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ plot(
5151
)
5252
```
5353

54-
Density heatmaps can also be [faceted](/julia/facet-plots/):
54+
Density heatmaps can also be faceted:
5555

5656
```julia
5757
using PlotlyJS, CSV, DataFrames

julia/3d-axes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jupyter:
2929
attributes such as `xaxis`, `yaxis` and `zaxis` parameters, in order to
3030
set the range, title, ticks, color etc. of the axes.
3131

32-
For creating 3D charts, see [this page](https://plotly.com/julia/3d-charts/).
32+
<!-- For creating 3D charts, see [this page](https://plotly.com/julia/3d-charts/). -->
3333

3434
```julia
3535
using PlotlyJS

julia/3d-iso-surface-plots.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,13 @@ jupyter:
1919
name: 3D Isosurface Plots
2020
order: 10
2121
page_type: example_index
22-
permalink: juila/3d-isosurface-plots/
22+
permalink: julia/3d-isosurface-plots/
2323
redirect_from: julia/isosurfaces-with-marching-cubes/
2424
thumbnail: thumbnail/isosurface.jpg
2525
---
2626

27+
# NOTE: this permalink does not work
28+
2729
With `go.Isosurface`, you can plot [isosurface contours](https://en.wikipedia.org/wiki/Isosurface) of a scalar field `value`, which is defined on `x`, `y` and `z` coordinates.
2830

2931
#### Basic Isosurface

julia/3d-surface-plots.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ plot(surface(z=z_data, x=x, y=y), layout)
7171

7272
#### Surface Plot With Contours
7373

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

7676
```julia
7777
using PlotlyJS, CSV, HTTP, DataFrames

julia/3d-volume.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jupyter:
2323
thumbnail: thumbnail/3d-volume-plots.jpg
2424
---
2525

26-
A volume plot with `volume` shows several partially transparent isosurfaces for volume rendering. The API of `volume` is close to the one of `isosurface`. However, whereas [isosurface plots](/julia/3d-isosurface-plots/) show all surfaces with the same opacity, tweaking the `opacityscale` parameter of `volume` results in a depth effect and better volume rendering.
26+
A volume plot with `volume` shows several partially transparent isosurfaces for volume rendering. The API of `volume` is close to the one of `isosurface`. However, whereas isosurface plots show all surfaces with the same opacity, tweaking the `opacityscale` parameter of `volume` results in a depth effect and better volume rendering.
2727

2828
## Basic volume plot
2929

@@ -253,6 +253,4 @@ plot(volume(
253253

254254
See https://plotly.com/julia/reference/volume/ for more information and chart attribute options!
255255

256-
#### See also
257256

258-
[3D isosurface documentation](/julia/3d-isosurface-plots/)

julia/axes.md

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,30 +25,27 @@ jupyter:
2525
thumbnail: thumbnail/axes.png
2626
---
2727

28-
This tutorial explain how to set the properties of [2-dimensional Cartesian axes](/julia/figure-structure/#2d-cartesian-trace-types-and-subplots), namely [`layout.xaxis`](/julia/reference/layout/xaxis/) and [`layout.yaxis`](julia/reference/layout/xaxis/).
28+
This tutorial explain how to set the properties of [2-dimensional Cartesian axes], namely [`layout.xaxis`](/julia/reference/layout/xaxis/) and [`layout.yaxis`](/julia/reference/layout/yaxis/).
2929

3030
Other kinds of subplots and axes are described in other tutorials:
3131

3232
- [3D axes](/julia/3d-axes) The axis object is [`layout.Scene`](/julia/reference/layout/scene/)
3333
- [Polar axes](/julia/polar-chart/). The axis object is [`layout.Polar`](/julia/reference/layout/polar/)
34-
- [Ternary axes](/julia/ternary-plots). The axis object is [`layout.Ternary`](/julia/reference/layout/ternary/)
35-
- [Geo axes](/julia/map-configuration/). The axis object is [`layout.Geo`](/julia/reference/layout/geo/)
36-
- [Mapbox axes](/julia/mapbox-layers/). The axis object is [`layout.Mapbox`](/julia/reference/layout/mapbox/)
37-
- [Color axes](/julia/colorscales/). The axis object is [`layout.Coloraxis`](/julia/reference/layout/coloraxis/).
3834

39-
**See also** the tutorials on [facet plots](/julia/facet-plots/), [subplots](/julia/subplots) and [multiple axes](/julia/multiple-axes/).
35+
36+
**See also** the tutorials on [subplots](/julia/subplots) and [multiple axes](/julia/multiple-axes/).
4037

4138
### 2-D Cartesian Axis Types and Auto-Detection
4239

4340
The different types of Cartesian axes are configured via the `xaxis.type` or `yaxis.type` attribute, which can take on the following values:
4441

4542
- `'linear'` as described in this page
46-
- `'log'` (see the [log plot tutorial](/julia/log-plots/))
43+
- `'log'`
4744
- `'date'` (see the [tutorial on timeseries](/julia/time-series/))
48-
- `'category'` (see the [categorical axes tutorial](/julia/categorical-axes/))
49-
- `'multicategory'` (see the [categorical axes tutorial](/julia/categorical-axes/))
45+
- `'category'`
46+
- `'multicategory'`
5047

51-
The axis type is auto-detected by looking at data from the first [trace](/julia/figure-structure/) linked to this axis:
48+
The axis type is auto-detected by looking at data from the first [trace] linked to this axis:
5249

5350
- First check for `multicategory`, then `date`, then `category`, else default to `linear` (`log` is never automatically selected)
5451
- `multicategory` is just a shape test: is the array nested?

julia/cone-plot.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jupyter:
2424
thumbnail: thumbnail/3dcone.png
2525
---
2626

27-
A cone plot is the 3D equivalent of a 2D [quiver plot](/julia/quiver-plots/), i.e., it represents a 3D vector field using cones to represent the direction and norm of the vectors. 3-D coordinates are given by `x`, `y` and `z`, and the coordinates of the vector field by `u`, `v` and `w`.
27+
A cone plot is the 3D equivalent of a 2D [quiver plot], i.e., it represents a 3D vector field using cones to represent the direction and norm of the vectors. 3-D coordinates are given by `x`, `y` and `z`, and the coordinates of the vector field by `u`, `v` and `w`.
2828

2929
### Basic 3D Cone
3030

julia/dot-plots.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jupyter:
2525

2626
#### Basic Dot Plot
2727

28-
Dot plots (also known as [Cleveland dot plots](<https://en.wikipedia.org/wiki/Dot_plot_(statistics)>)) are [scatter plots](https://plotly.com/julia/line-and-scatter/) with one categorical axis and one continuous axis. They can be used to show changes between two (or more) points in time or between two (or more) conditions. Compared to a [bar chart](/julia/bar-charts/), dot plots can be less cluttered and allow for an easier comparison between conditions.
28+
Dot plots (also known as [Cleveland dot plots](https://en.wikipedia.org/wiki/Dot_plot_(statistics))) are [scatter plots](https://plotly.com/julia/line-and-scatter/) with one categorical axis and one continuous axis. They can be used to show changes between two (or more) points in time or between two (or more) conditions. Compared to a [bar chart](/julia/bar-charts/), dot plots can be less cluttered and allow for an easier comparison between conditions.
2929

3030
For the same data, we show below how to create a dot plot using `scatter`.
3131

julia/graphing-multiple-chart-types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jupyter:
2525

2626
### Chart Types versus Trace Types
2727

28-
Plotly figures support defining [subplots](/julia/subplots/) of various types (e.g. cartesian, [polar](/julia/polar-chart/), [3-dimensional](/julia/3d-charts/), [maps](/julia/maps/) etc) with attached traces of various compatible types (e.g. scatter, bar, choropleth, surface etc). This means that **Plotly figures are not constrained to representing a fixed set of "chart types"** such as scatter plots only or bar charts only or line charts only: any subplot can contain multiple traces of different types.
28+
Plotly figures support defining [subplots](/julia/subplots/) of various types (e.g. cartesian, [polar](/julia/polar-chart/), [3-dimensional], [maps] etc) with attached traces of various compatible types (e.g. scatter, bar, choropleth, surface etc). This means that **Plotly figures are not constrained to representing a fixed set of "chart types"** such as scatter plots only or bar charts only or line charts only: any subplot can contain multiple traces of different types.
2929

3030

3131
### Multiple Trace Types

julia/images.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jupyter:
2525

2626
#### Add a Background Image
2727

28-
In this page we explain how to add static, non-interactive images as background, logo or annotation images to a figure. For exploring image data in interactive charts, see the [tutorial on displaying image data](/julia/imshow).
28+
In this page we explain how to add static, non-interactive images as background, logo or annotation images to a figure. For exploring image data in interactive charts, see the [tutorial on displaying image data].
2929

3030
A background image can be added to the layout of a figure with the `images` parameter of `gLayout`. The
3131
`source` attribute of a `layout.Image` should be the URL of the image.

0 commit comments

Comments
 (0)