Page 1 of 1

Scatterplot with labels

Posted: Sun Feb 25, 2024 6:14 pm
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