圆形形状在rStudio中看起来不是圆形

时间:2018-08-09 07:56:40

标签: 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()

plot result

0 个答案:

没有答案