search for: q2after

Displaying 1 result from an estimated 1 matches for "q2after".

Did you mean: q1after
2013 May 01
1
Combine multiple tables into one
...;? ? for(j in 1:length(obs)){ ? >? ? ? ? ? squ[i,j] <- sum((a==obs[i])*(b==obs[j]), na.rm=TRUE) ? >? ? ? } ? >? } ? >? squ >} > >#Mock data >sampleid <- c(1:5) >Q1before <- c(0,0,1,0,1) >Q1after <- c(0,1,0,0,1) >Q2before <- c(1,0,0,0,0) >Q2after <- c(0,0,0,0,0) > >#This is what my real data looks like >#It may be easier to reformat this df to a format that could then use my create.table() function to get to the combined table endpoint? >mydf <- as.data.frame(cbind(sampleid,Q1before, Q1after, Q2before, Q2after)) >c...