This commit is contained in:
agdamsbo 2019-11-13 10:43:25 +01:00
parent aac24d7a5d
commit 91f3c0a483
2 changed files with 11 additions and 14 deletions

View File

@ -1,7 +1,7 @@
Package: daDoctoR Package: daDoctoR
Type: Package Type: Package
Title: FUNCTIONS FOR HEALTH RESEARCH Title: FUNCTIONS FOR HEALTH RESEARCH
Version: 0.1.0.9027 Version: 0.1.0.9028
Author: c(person("Andreas", "Gammelgaard Damsbo", email = "agdamsbo@pm.me", role = c("cre", "aut"))) Author: c(person("Andreas", "Gammelgaard Damsbo", email = "agdamsbo@pm.me", role = c("cre", "aut")))
Maintainer: Andreas Gammelgaard Damsbo <agdamsbo@pm.me> Maintainer: Andreas Gammelgaard Damsbo <agdamsbo@pm.me>
Description: I am a Danish medical doctor involved in neuropsychiatric research. Description: I am a Danish medical doctor involved in neuropsychiatric research.

View File

@ -135,15 +135,13 @@ strobe_pred<-function(meas,adj,data,dec=2,n.by.adj=FALSE,p.val=FALSE){
nq<-rbind(nq,cbind(nl,rt)) nq<-rbind(nq,cbind(nl,rt))
}}} }}}
rnames<-c() rnames<-c()
for (i in 1:ncol(dat2)){
for (i in 1:length(ads)){ if (is.factor(dat2[,i])){
if (is.factor(ads[,i])){ rnames<-c(rnames,names(dat2)[i],paste0(names(dat2)[i],levels(dat2[,i])))
rnames<-c(rnames,names(ads[i]),levels(ads[,i]))
} }
if (!is.factor(ads[,i])){ if (!is.factor(dat2[,i])){
rnames<-c(rnames,names(ads[i]),"Per unit increase") rnames<-c(rnames,paste0(names(dat2)[i],".all"),names(dat2)[i])
} }
} }
res<-cbind(aor_ci,apv) res<-cbind(aor_ci,apv)
@ -296,13 +294,12 @@ strobe_pred<-function(meas,adj,data,dec=2,n.by.adj=FALSE,p.val=FALSE){
rnames<-c() rnames<-c()
for (i in 1:ncol(dat2)){
for (i in 1:length(ads)){ if (is.factor(dat2[,i])){
if (is.factor(ads[,i])){ rnames<-c(rnames,names(dat2)[i],paste0(names(dat2)[i],levels(dat2[,i])))
rnames<-c(rnames,names(ads[i]),levels(ads[,i]))
} }
if (!is.factor(ads[,i])){ if (!is.factor(dat2[,i])){
rnames<-c(rnames,names(ads[i]),"Per unit increase") rnames<-c(rnames,paste0(names(dat2)[i],".all"),names(dat2)[i])
} }
} }
res<-cbind(amean_ci,apv) res<-cbind(amean_ci,apv)