Displaying 1 result from an estimated 1 matches for "obsvalues".
Did you mean:
obs_value
2011 Aug 16
1
how to sort the levels of a table
...s of 1 and 0 (different length!) which was
obtained by concatenating answers of a multiple 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$refVa...