Last active
April 26, 2024 10:52
-
-
Save nickyfoto/0255850c3e0509d48a4dfd5479483cfb to your computer and use it in GitHub Desktop.
example using plotly to plot emojis
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Great, thanks for sharing - helped a lot!