Scatterplot with labels

Everything related to development of the jamovi platform
Post Reply
vjalby
Posts: 8
Joined: Tue Oct 24, 2023 4:52 pm

Scatterplot with labels

Post by vjalby »

Hi,

I often use the Scatterplot function from the scatr module, but I sometimes miss the ability to add labels to points (from a text/nominal variable), eg to display country names. Using the color/group field gives chart not easily readable with more than 10 values.

With R, I would use

Code: Select all

ggplot(df, aes(x=var1, y=var2)) +
  geom_point() +
  geom_text(label=df$country)
May you consider to add this feature to scatr plugin?

Thanks,

Vincent
Post Reply