Displaying 1 result from an estimated 1 matches for "impht_long_trunc".
2007 Sep 24
0
longitudinal imputation with PAN
...of the PAN procedure for longitudinal data imputation is very appealing...
I would very much appreciate any advice you could give me, many thanks in advance.
Jo Hosking
Code and a small sample data are shown below (I could supply more data to anyone willing!)...
impht.data <-read.delim ("impht_long_trunc.dat",header = TRUE)
impht.data$sex <-factor(impht.data$sex,label = c("Boys","Girls"))
impht.data$visit <- factor (impht.data$visit)
impht.data$code <- factor (impht.data$code)
y <- impht.data$htmiss
subj <- impht.data$code
pred <- cbind (impht.data$age, i...