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