gpt4 book ai didi

r - 使用 qplot 制作点图

转载 作者:行者123 更新时间:2023-12-04 04:38:50 26 4
gpt4 key购买 nike

我想为 qplot 做一个包装将默认几何体从 histogram 更改为至 dotplot如果 x是数字和 y为空。但是我无法得到 qplotgeom_dotplot 一起工作:

> x <- rnorm(100)
> qplot(x, geom="dotplot")
stat_bindot: binwidth defaulted to range/30. Use 'binwidth = x' to adjust this.
Error in if (params$stackdir == "up") { : argument is of length zero

我如何使用 qplot创建此图:
ggplot(,aes(x=x)) + geom_dotplot()

最佳答案

qplot 缺少为 geom_dotplot 设置的默认美学。您可以手动指定它们:

qplot(x, geom = "dotplot",
stackdir = "up", stackgroups = FALSE, binaxis = "x")

加上binwidth。

关于r - 使用 qplot 制作点图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19231655/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com