diff --git a/doc/python/line-and-scatter.md b/doc/python/line-and-scatter.md index b82312afcc..5f700dc0f0 100644 --- a/doc/python/line-and-scatter.md +++ b/doc/python/line-and-scatter.md @@ -85,6 +85,13 @@ fig = px.scatter(df, x="sepal_width", y="sepal_length", color="species", symbol= fig.show() ``` +**Try building a scatter plot.** Use the following interactive app, hosted on [Plotly Cloud](https://plotly.com/cloud/), to see how the code updates based on your selections. + +```python hide_code=true +from IPython.display import IFrame +IFrame(src='https://scatter-plot-python.plotly.app/', width='100%', height=800) +``` + ## Scatter plots in Dash [Dash](https://plotly.com/dash/) is the best way to build analytical apps in Python using Plotly figures. To run the app below, run `pip install dash`, click "Download" to get the code and run `python app.py`.