search for: aserno

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

Did you mean: serno
2011 Jul 11
1
How to generate same type of graphs using the previously written commands for a few hundred similar data sets?
...htout", etc. Is there a command in R that would do this for me? (So I don't need to repeat myself modifying the names, copying and pasting the same things into R.) Thank you very much! alldata <- read.csv(file="file.csv",header=T,sep=",") seven<- subset(alldata, aserno==7, select=c(I,C,D)) ## aserno==7, so I need to change 7 into different numbers included in the data file## sevenout <- subset(seven, I=="a" & D>0, select=c(I,C,D)) f <- function(sevenoutf) nrow(sevenoutf) sevennumber <- ddply(sevenout,.(C), f) colnames(sevennumber)[2...