Displaying 1 result from an estimated 1 matches for "insp9".
Did you mean:
insp
2006 Oct 12
2
avoiding a loop?
I have a vector, (not a list)
> repeated.measures.FACTOR.names
[1] "Insp1" "Insp2" "Insp3" "Insp4" "Insp5" "Insp6" "Insp7" "Insp8" "Insp9"
and would like to convert this into a single string
"Insp1,Insp2,Insp3,Insp4,Insp5,Insp6,Insp7,Insp8,Insp9"
I can do that with a loop, but isn't there a more elegant way?
> result <- repeated.measures.FACTOR.names[[1]]
> for(i in 2:length(repeated.measures.FACTOR.na...