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)
Thanks,
Vincent