search for: 40aff201

Displaying 1 result from an estimated 1 matches for "40aff201".

2009 May 29
1
probably simple paste question
Dear R People: I have the following vector and am using the paste command: > ya [1] 57 2 8 > paste("stuff",ya,sep=" ") [1] "stuff 57" "stuff 2" "stuff 8" What I want to have is "stuff 57 2 8" I also tried: > yb <- paste(cat("stuff",ya)) stuff 57 2 8> yb character(0) I have the feeling that it's really