具有合并归因结果的线性回归散点图

时间:2020-08-18 15:54:34

标签: scatter-plot

我一直在使用小鼠工作的汇总结果进行回归分析。

该分析是成功的,但我似乎无法弄清楚如何绘制此分析:

我尝试过的例子:

#####regression with two variables from Mids

fit<-with(data=imp5, exp=lm(Domain1_TS~HADS_TS))
lin.pool<-pool(fit)
summary(lin.pool)

###我如何绘制此图:

ggplot(Longfile, aes(x=Domain1_TS, y=HADS_TS))+
geom_point()+
geom_smooth(method=lm)

我收到的错误消息:

Warning messages:
1: Removed 55 rows containing non-finite values (stat_smooth). 
2: Removed 55 rows containing missing values (geom_point). 
> 

我得到了一个情节,但不确定是否可以信任它。

有什么建议吗?

0 个答案:

没有答案