Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created August 1, 2021 08:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amankharwal/efe1e36d8a7baf2c2158d3d77fff6e95 to your computer and use it in GitHub Desktop.
Save amankharwal/efe1e36d8a7baf2c2158d3d77fff6e95 to your computer and use it in GitHub Desktop.
import plotly.express as px
data = px.data.iris()
figure = px.scatter(data, x="sepal_width", y="sepal_length", color="species",
size="petal_length", hover_data=["petal_width"])
figure.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment