Skip to content

Commit 3bee004

Browse files
committed
Trendlines
1 parent d9ac8e7 commit 3bee004

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/notes/dataviz-tabular/trendlines.qmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ df = DataFrame(scatter_data)
3030
df.head()
3131
```
3232

33-
Linear trends:
33+
Linear trends using the "ols" trendline parameter value:
3434

3535
```{python}
3636
from plotly.express import scatter
@@ -43,7 +43,7 @@ fig = scatter(df, x="income", y="life_expectancy", height=350,
4343
fig.show()
4444
```
4545

46-
Non-linear trends:
46+
Non-linear trends using the "lowess" trendline parameter value:
4747

4848

4949
```{python}

0 commit comments

Comments
 (0)