标签: r ggplot2
我测试了以下代码,但图中的圆形看起来不像圆形。 RStudio中是否有我需要更改的设置?
library(ggplot2) df2 <- data.frame(x = 1:5 , y = 1:25, z = 1:25) s <- ggplot(df2, aes(x = x, y = y)) s + geom_point(aes(shape = z), size = 6) + scale_shape_identity()