Displaying 1 result from an estimated 1 matches for "failcondtab".
2005 Nov 05
2
sort table
Hi,
I have a data frame named "questions" that I use to get a subset and
then a table:
failcondonly <- subset(questions, errorreason=="condition")
failcondtab <- table(failcondonly$type, failcondonly$qid, exclude=c("ORGA", "skipped"))
The failcondtab looks like this:
        6 11 12 13 14 15 17 26 30 31 39 41
gave up 0  1  1  1  1  0  0  0  0  8  0  2
wrong   3  3  7  3  3  1  4  1  3  4  1  2
I want to sort this table according...