gpt4 book ai didi

r - 使用 ggplot2 制作简单箱线图时出错

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

使用 R 中的 mpg 数据,我可以制作一个“displ”的箱线图

boxplot(mpg$displ)

但是当我尝试用 ggplot 制作这个简单的箱线图时,

ggplot(data = mpg, aes(displ)) + geom_boxplot()

我收到这个错误;

Error in seq.default(from = best$lmin, to = best$lmax, by = best$lstep) : 'from' must be of length 1
In addition: Warning messages:
1: Continuous x aesthetic -- did you forget aes(group=...)?
2: In is.na(data$y) : is.na() applied to non-(list or vector) of type 'NULL'

最佳答案

ggplot2 需要箱线图的 xy 变量。这是制作单个箱线图的方法

ggplot(data = mpg, aes(x = "", y = displ)) + 
geom_boxplot() +
theme(axis.title.x = element_blank())

关于r - 使用 ggplot2 制作简单箱线图时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35681614/

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