gpt4 book ai didi

r - 带有预计算值的 geom_boxplot

转载 作者:行者123 更新时间:2023-12-04 01:57:27 27 4
gpt4 key购买 nike

过去,我已经能够使用 ggplot2 创建箱线图,方法是提供下须、下分位数、中位数、上分位数和上须以及 x 轴标签。例如:

DF <- data.frame(x=c("A","B"), min=c(1,2), low=c(2,3), mid=c(3,4), top=c(4,5), max=c(5,6))
ggplot(DF, aes(x=x, y=c(min,low,mid,top,max))) +
geom_boxplot()

将为两组数据(A 和 B)制作箱线图。这不再适用于我。我收到以下错误:
Error: Aesthetics must either be length one, or the same length as the dataProblems:x

有谁知道 ggplot2 中是否发生了一些变化?

最佳答案

这适用于 ggplot2 版本 0.9.1(和 R 2.15.0)

library(ggplot2)

DF <- data.frame(x=c("A","B"), min=c(1,2), low=c(2,3), mid=c(3,4), top=c(4,5), max=c(5,6))

ggplot(DF, aes(x=x, ymin = min, lower = low, middle = mid, upper = top, ymax = max)) +
geom_boxplot(stat = "identity")

enter image description here

请参阅“使用预先计算的统计信息”示例 here

关于r - 带有预计算值的 geom_boxplot,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10628847/

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