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



