In this Plotly tutorial, you will learn how to use plotly imshow function.
# Import Plotly Module
import plotly.express as px
# Import Dataset
dataset = px.data.gapminder().query("continent=='Oceania'")
# Imshow
plot = px.imshow(dataset)
# Show the Plot
plot.show()Output:



