1 Star 1 Fork 0

雨天隐形人/Medical related R language procedures

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
混合效应模型代码.Rmd 1.79 KB
一键复制 编辑 原始数据 按行查看 历史
shanjiayu1 提交于 2023-11-27 23:07 . 2023.11.27 敏感性分析
title author date output
多项式混合效应模型绘图
sjy
2023-05-29
html_document
```{r} #加载所用r包 library(openxlsx)#导入xlsx数据 library(tidyverse)#数据处理 library(lme4) #混合效应模型 library(lmerTest) #输出p值 library(modelr)#结果提取 library(ggplot2) #绘图 ``` # 1.导入数据及数据处理 ```{r} origindata % mutate(pc=as.factor(pc)) #将pc转为因子 origindata=origindata %>% rename(childid=pc) #改名 str(origindata) ``` # 2.混合效应模型建模 ```{r} model1 % add_predictions(model1) origindata2 % add_predictions(model2) origindata3 % add_predictions(model3) origindata4 % add_predictions(model4) ggplot(origindata1,aes(monthage,pred))+geom_line(aes(group=childid),color="red") ggplot(origindata2,aes(monthage,pred))+geom_line(aes(group=childid),color="red") ggplot(origindata3,aes(monthage,pred))+geom_line(aes(group=childid),color="red") ggplot(origindata4,aes(monthage,pred))+geom_smooth(aes(group=childid),color="red",linewidth=0.2) ```
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
R
1
https://gitee.com/sjy12345/lover.git
[email protected]:sjy12345/lover.git
sjy12345
lover
Medical related R language procedures
master

搜索帮助