Displaying 1 result from an estimated 1 matches for "napt_09".
2010 Jan 21
2
Help with subset
...of my merge document. The "x116" line has the merge
field, in this case "Bases-K Ammonium Acetate-2008-116". This changes for
each soil sample, and for each type of analysis. ##
napt <- read.table(file = "C:/Documents and Settings/jfloren/My
Documents/R_Statistics/NAPT/NAPT_09/CertIn2010/Data_for_R/readin_all_for_2010_cert.csv
", header = TRUE, sep = ",")
attach(napt)
x116 <- subset(napt, Analysis_Soil %in% c("Bases-K Ammonium
Acetate-2008-116"))
detach(napt)
attach(x116)
#### End of merge document section for selecting the subset ###
Onc...