Re: [R] prefixing values in a table

2010-01-05 Thread jim holtman
try this: > x <- c("A", "A", "B", "A") > x.t <- table(x) > x.t x A B 3 1 > x.tw <- paste("W", x.t, sep='') > names(x.tw) <- names(x.t) > x.tw AB "W3" "W1" > On Tue, Jan 5, 2010 at 6:38 PM, wrote: > Hi, > > I have generated a table of counts, and now need to add a prefix to the > count

[R] prefixing values in a table

2010-01-05 Thread laura . hug
Hi, I have generated a table of counts, and now need to add a prefix to the counts. #count KO occurrences KO_occur = table(groupKOIDs) #where groupKOIDs is a vector of characters e.g., if groupKOIDs = c("A", "A", "B", "A") then KO_occur would look like this: A B 3 1 and I need to add a