Skip to content

Commit 9fe0de6

Browse files
Merge pull request #3939 from plotly/fix-typo
Fix typo
2 parents d124170 + 595313f commit 9fe0de6

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

doc/python/dumbbell-plots.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jupyter:
3636
## Basic Dumbbell Plot
3737

3838

39-
Dumbbell plots are useful for demonstrating change between two sets of data points, for example, the population change for a selection of countries for two different years
39+
Dumbbell plots are useful for demonstrating change between two sets of data points, for example, the population change for a selection of countries for two different years.
4040

4141
In this example, we compare life expectancy in 1952 with life expectancy in 2002 for countries in Europe.
4242

@@ -107,9 +107,9 @@ fig.show()
107107

108108
*Note: The `arrow`, `angleref`, and `standoff` properties used on the `marker` in this example are new in 5.11*
109109

110-
In this example, we add arrow markers to the plot. The first trace adds the lines connecting the data points and arrow markers.
110+
In this example, we add arrow markers to the plot. The first trace adds the lines connecting the data points and arrow markers.
111111
The second trace adds circle markers. On the first trace, we use `standoff=8` to position the arrow marker back from the data point.
112-
For the arrow marker to point directly at the circle marker, this value should be half the circle marker size.
112+
For the arrow marker to point directly at the circle marker, this value should be half the circle marker size.
113113

114114
```python
115115
import pandas as pd

doc/python/legend.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ fig.show()
193193

194194
*New in 5.11*
195195

196-
Set the width of hozitonal legend entries by setting `entrywidth`. Here we set it to `70` pixels. Pixels is the default unit for `entrywidth`, but you can set it to be a fraction of the plot width using `entrywidthmode='fraction`.
196+
Set the width of horizontal legend entries by setting `entrywidth`. Here we set it to `70` pixels. Pixels is the default unit for `entrywidth`, but you can set it to be a fraction of the plot width using `entrywidthmode='fraction`.
197197

198198
```python
199199
import plotly.express as px

doc/python/scattermapbox.md

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

250250
*New in 5.11*
251251

252-
Display clusters of data points by setting `cluster`. Here, we enable clusters with `enabled=True`. You can also enable clusters by setting other `cluster` properties. Other available properties include `color` (for setting the color of the clusters), `size` (for setting the size of a cluster step), and `step` (for configuring how many points it takes to create a cluster or advance to the next cluster step.
252+
Display clusters of data points by setting `cluster`. Here, we enable clusters with `enabled=True`. You can also enable clusters by setting other `cluster` properties. Other available properties include `color` (for setting the color of the clusters), `size` (for setting the size of a cluster step), and `step` (for configuring how many points it takes to create a cluster or advance to the next cluster step).
253253

254254
```python
255255
import plotly.express as px

0 commit comments

Comments
 (0)