如何在qplot中更改磅值

时间:2015-05-20 06:46:10

标签: r ggplot2

在常规R图中,我可以通过更改cex参数来使点更小或更大。如果我使用ggplot,我该怎么做呢?特别是,我正在制作ggplot并希望缩小点数。谢谢!

感谢那些评论的人。但是我没有看到如何将size用于qqplot。我的代码如下。

qplot(sample=Shape, data=shape.mop, colour=Type) +
  theme(legend.position="bottom") +
  geom_point(size=0.5)

1 个答案:

答案 0 :(得分:13)

您可以使用函数sizeqplot调用中使用参数I来确定点的大小:

qplot(mpg, wt, data=mtcars)

enter image description here

qplot(mpg, wt, data=mtcars, size=I(0.2))

enter image description here