In this Plotly tutorial, you will learn how to plot a scatter plot in Python. You can use px.scatter()
function to plot a scatter plot.
# Import Plotly Module import plotly.express as px # Import Dataset dataset = px.data.gapminder().query("continent=='Oceania'") # Scatter Plot plot = px.scatter(dataset, x="gdpPercap", y="lifeExp", color='country', title='Plotly Scatter Plot', height=400, width=600) # Show the Plot plot.show()
Output: