search for: refvalu

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

Did you mean: refval
2011 Aug 16
1
how to sort the levels of a table
...e choice questionaire. I created a confusion matrix (table) displaying the observations of the 20 observers (nr. 1 to 20) versus the reference (nr. 21) via the following code: ## observations of the reference obsValues<-factor(unlist(input[,-c(1,ncol(input))])) ## observations of the observers refValues<-factor(input[,ncol(input)]) ## data.frame that relates observations of observers and reference RefObs<-data.frame(refValues, obsValues) mtx<-table( RefObs$obsValues, RefObs$refValues, dnn=c("observers", "reference"), useNA=...