search for: mci_count

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

Did you mean: mc_count
2007 Nov 26
2
Filling in a Zero Matrix
...################## #Open the csv file OGSdata <- read.table("MG3199.csv",sep=",",header=TRUE) #creates 3 separate vectors sample <- OGSdata[,1] mci <- OGSdata[,2] pct <- OGSdata[,3] #change mci range offset <- min(mci)-1 mci <- (mci - offset) #matrix sizes mci_count <- max(mci) sample_count <- max(sample) #creates a zero matrix OGS <- mat.or.vec(mci_count,sample_count) #Create labels sample_lab <- ("A-9","B-9", "C-9", "D-9", "E-9","A-12","B-12", "C-12", "D-12&qu...