gpt4 book ai didi

r - 在R中,处理错误:ggplot2不知道如何处理数值类的数据

转载 作者:行者123 更新时间:2023-12-03 12:15:56 27 4
gpt4 key购买 nike

我是R的新手,之前没有做过任何编程工作...

当我尝试创建带有标准误差线的箱形图时,出现标题中提到的错误消息。

我使用了我在R Cookbook上找到的脚本,对其进行了一些调整:

ggplot(GVW, aes(x="variable",y="value",fill="Genotype")) + 
geom_bar(position=position_dodge(),stat="identity",colour="black", size=.3)+
geom_errorbar(data=GVW[1:64,3],aes(ymin=value-seSKO, ymax=value+seSKO), size=.3, width=.2, position=position_dodge(.9))+
geom_errorbar(data=GVW[65:131,3],aes(ymin=value-seSWT, ymax=value+seSWT), size=.3, width=.2, position=position_dodge(.9))+
geom_errorbar(data=GVW[132:195,3],aes(ymin=value-seEKO, ymax=value+seEKO), size=.3, width=.2, position=position_dodge(.9))+
geom_errorbar(data=GVW[196:262,3],aes(ymin=value-seEWT, ymax=value+seEWT), size=.3, width=.2, position=position_dodge(.9))+
xlab("Time")+
ylab("Weight [g]")+
scale_fill_hue(name="Genotype", breaks=c("KO", "WT"), labels=c("Knock-out", "Wild type"))+
ggtitle("Effect of genotype on weight-gain")+
scale_y_continuous(breaks=0:20*4) +
theme_bw()

Data<- data.frame(
Genotype<- sample(c("KO","WT"), 262, replace=T),
variable<- sample(c("Start","End"), 262, replace=T),
value<- runif(262,20,40)
)
names(Data)[1] <- "Genotype"
names(Data)[2] <- "variable"
names(Data)[3] <- "value"

最佳答案

发生错误是因为您试图将数值 vector 映射到data:geom_errorbar中的GVW[1:64,3]ggplot仅与data.frame一起使用。

通常,您不应该在ggplot调用中使用子集。这样做是因为您的标准错误存储在四个单独的对象中。将它们添加到您的原始data.frame中,您将可以在一次调用中绘制所有内容。

这里有一个dplyr解决方案,用于汇总数据并预先计算标准误差。

library(dplyr)
d <- GVW %>% group_by(Genotype,variable) %>%
summarise(mean = mean(value),se = sd(value) / sqrt(n()))

ggplot(d, aes(x = variable, y = mean, fill = Genotype)) +
geom_bar(position = position_dodge(), stat = "identity",
colour="black", size=.3) +
geom_errorbar(aes(ymin = mean - se, ymax = mean + se),
size=.3, width=.2, position=position_dodge(.9)) +
xlab("Time") +
ylab("Weight [g]") +
scale_fill_hue(name = "Genotype", breaks = c("KO", "WT"),
labels = c("Knock-out", "Wild type")) +
ggtitle("Effect of genotype on weight-gain") +
scale_y_continuous(breaks = 0:20*4) +
theme_bw()

关于r - 在R中,处理错误:ggplot2不知道如何处理数值类的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29953011/

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