Thanks all for providing suggestion on the question processing of hospital admission data using R, I have addition question on this issue, actually, it should be the task before that question.
Now I have a dataset like this:
Patient_ID Date Ward
P001 1 A
P001 2 A
P001 3 A
P001 4 A
P001 4 B
P001 5 B
P001 6 B
P001 7 B
P001 7 C
P001 8 B
P001 9 B
P001 10 B
I need to convert it into:
Patient_ID Date Ward
P001 1 A
P001 2 A
P001 3 A
P001 4 A;B
P001 5 B
P001 6 B
P001 7 B;C
P001 8 B
P001 9 B
P001 10 B
Currently I have convert it using ddply, code is attached below:
data <- ddply(data,
c("Patient_ID", "Date"),
function(df)
{data.frame(Ward=paste(unique(df[,"Ward"]),collapse=";"))
},
.progress="text"
)
This can solve my problem, but it is VERY slow (more than 20 minutes on a P4 3.2 machine) when the dataset is having 8818 unique(Patients_ID) and 1861 unique(Date). How can I improve that? Thanks!