【发布时间】:2021-04-22 02:45:23
【问题描述】:
我正在尝试重现下图,其中内部线是调整后的回归线:
但是,由于某些因素,它没有被绘制成应有的样子,也就是说,只呈现了一条线,而且,变量“teor”的不同浓度没有像图像中那样被绘制出来上面,看下面的结果:
dados = read.table("datanew.csv", header = T, sep=";", dec=","); head(dados)
dados$Trat <- factor(dados$Trat)
dados$Teor <- factor(dados$Teor)
dadosnew$Tempo = as.factor(dadosnew$Tempo)
my.formula <- y ~ x
p = ggplot(dadosnew, aes(x = Tempo, y = massaseca, group = Fator)) +
stat_summary(geom = "point", fun = mean) +
stat_smooth(method = "lm", se=FALSE, formula=y ~ poly(x, 2, raw=TRUE)) + stat_poly_eq(formula = my.formula,
eq.with.lhs = "As-italic(hat(y))~`=`~",
aes(label = paste(..eq.label.., ..rr.label.., sep = "*plain(\",\")~")),
parse = TRUE, size = 5, label.y = 35)+
labs(title = "",
x = "Time (Minutes)",
y = "Weight (mg)") + theme_bw() +
theme(axis.title = element_text(size = 23,color="black"),
axis.text = element_text(size = 18,color="black"),
text = element_text(size = 50,color="black"),
legend.position = "none") + facet_wrap(~Fator)
p
【问题讨论】:
标签: r ggplot2 plot regression linear-regression