Skip to content

Instantly share code, notes, and snippets.

@nickyfoto
Last active April 26, 2024 10:52
Show Gist options
  • Save nickyfoto/0255850c3e0509d48a4dfd5479483cfb to your computer and use it in GitHub Desktop.
Save nickyfoto/0255850c3e0509d48a4dfd5479483cfb to your computer and use it in GitHub Desktop.
example using plotly to plot emojis
# sample example using plotly to plot emojis
import plotly.express as px
import pandas as pd
d = {"1": ["😀", "🥰", "😗"],
"2": [1,2,3]
}
px.scatter(pd.DataFrame(d), x="1", y="2")
@UmutZho
Copy link

UmutZho commented Jun 22, 2022

Great, thanks for sharing - helped a lot!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment