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