Skip to content

Commit feb50c9

Browse files
authored
Merge branch 'doc-prod' into update-production-docs
2 parents 26ab18f + 851dcc3 commit feb50c9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

doc/python/animations.md

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

3838
Several [Plotly Express](/python/plotly-express/) functions support the creation of animated figures through the `animation_frame` and `animation_group` arguments.
3939

40-
Here is an example of an animated scatter plot creating using Plotly Express. Note that you should always fix the `x_range` and `y_range` to ensure that your data remains visible throughout the animation.
40+
Here is an example of an animated scatter plot created with Plotly Express. Note that you should always fix the `x_range` and `y_range` to ensure that your data remains visible throughout the animation.
4141

4242
```python
4343
import plotly.express as px

doc/python/interactive-html-export.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Any figure can be saved as an HTML file using the `write_html` method. These HTM
4646
```python
4747
import plotly.express as px
4848

49-
fig =px.scatter(x=range(10), y=range(10))
49+
fig = px.scatter(x=range(10), y=range(10))
5050
fig.write_html("path/to/file.html")
5151
```
5252
<!-- #endregion -->

doc/python/px-arguments.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jupyter:
3535

3636
### Plotly Express works with Column-oriented, Matrix or Geographic Data
3737

38-
[Plotly Express](/python/plotly-express/) is the easy-to-use, high-level interface to Plotly, which operates on a variety of types of data and produces [easy-to-style figures](/python/styling-plotly-express/).
38+
[Plotly Express](/python/plotly-express/) is the easy-to-use, high-level interface to Plotly, which [operates on a variety of types of data](/python/px-arguments/) and produces [easy-to-style figures](/python/styling-plotly-express/).
3939

4040
Plotly Express provides functions to visualize a variety of types of data. Most functions such as `px.bar` or `px.scatter` expect to operate on column-oriented data of the type you might store in a `DataFrame` (in either "long" or "wide" format, see below). These functions use Pandas internally to process the data, but also accept other types of DataFrames as arguments. See the **Input Data as Non-Pandas DataFrames** section below for more details.
4141

0 commit comments

Comments
 (0)