2022-08-19 10:30:10 +02:00
|
|
|
# Samlpe data from data base
|
|
|
|
|
|
|
|
source("https://raw.githubusercontent.com/agdamsbo/ENIGMAtrial_R/main/src/redcap_api_export_short.R")
|
|
|
|
|
|
|
|
df<-redcap_api_export_short(id= c(40:45),
|
|
|
|
instruments= "rbans",
|
|
|
|
event= "3_months_arm_1") %>%
|
|
|
|
select(c("record_id",ends_with(c("_version","_age","_rs")))) %>%
|
|
|
|
na.omit()|>
|
|
|
|
rbind(redcap_api_export_short(id= c(10:15),
|
|
|
|
instruments= "rbans",
|
|
|
|
event= "12_months_arm_1") %>%
|
|
|
|
select(c("record_id",ends_with(c("_version","_age","_rs")))) %>%
|
|
|
|
na.omit())
|
|
|
|
|
|
|
|
colnames(df)<-c("record_id","ab","age","imm","vis","ver","att","del")
|
|
|
|
|
2022-08-19 10:43:21 +02:00
|
|
|
## New index numbers
|
2022-08-19 10:30:10 +02:00
|
|
|
df$record_id<-1:nrow(df)
|
|
|
|
|
2022-08-19 10:43:21 +02:00
|
|
|
## Age is changed for obscurity
|
2022-08-19 10:30:10 +02:00
|
|
|
df$age<-sample(-2:2,nrow(df),TRUE)+df$age
|
|
|
|
|
|
|
|
write.csv(df, "sample.csv", row.names = FALSE)
|