You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Copy file name to clipboardExpand all lines: julia/3d-volume.md
+1-3Lines changed: 1 addition & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ jupyter:
23
23
thumbnail: thumbnail/3d-volume-plots.jpg
24
24
---
25
25
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.
27
27
28
28
## Basic volume plot
29
29
@@ -253,6 +253,4 @@ plot(volume(
253
253
254
254
See https://plotly.com/julia/reference/volume/ for more information and chart attribute options!
Copy file name to clipboardExpand all lines: julia/axes.md
+7-10Lines changed: 7 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,30 +25,27 @@ jupyter:
25
25
thumbnail: thumbnail/axes.png
26
26
---
27
27
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/).
29
29
30
30
Other kinds of subplots and axes are described in other tutorials:
31
31
32
32
-[3D axes](/julia/3d-axes) The axis object is [`layout.Scene`](/julia/reference/layout/scene/)
33
33
-[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/).
38
34
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/).
40
37
41
38
### 2-D Cartesian Axis Types and Auto-Detection
42
39
43
40
The different types of Cartesian axes are configured via the `xaxis.type` or `yaxis.type` attribute, which can take on the following values:
44
41
45
42
-`'linear'` as described in this page
46
-
-`'log'`(see the [log plot tutorial](/julia/log-plots/))
43
+
-`'log'`
47
44
-`'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'`
50
47
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:
52
49
53
50
- First check for `multicategory`, then `date`, then `category`, else default to `linear` (`log` is never automatically selected)
54
51
-`multicategory` is just a shape test: is the array nested?
Copy file name to clipboardExpand all lines: julia/cone-plot.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ jupyter:
24
24
thumbnail: thumbnail/3dcone.png
25
25
---
26
26
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`.
Copy file name to clipboardExpand all lines: julia/dot-plots.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ jupyter:
25
25
26
26
#### Basic Dot Plot
27
27
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.
29
29
30
30
For the same data, we show below how to create a dot plot using `scatter`.
Copy file name to clipboardExpand all lines: julia/graphing-multiple-chart-types.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ jupyter:
25
25
26
26
### Chart Types versus Trace Types
27
27
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.
Copy file name to clipboardExpand all lines: julia/images.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ jupyter:
25
25
26
26
#### Add a Background Image
27
27
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].
29
29
30
30
A background image can be added to the layout of a figure with the `images` parameter of `gLayout`. The
31
31
`source` attribute of a `layout.Image` should be the URL of the image.
0 commit comments