search for: a_40

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

Did you mean: a_0
2006 Dec 11
1
cohen kappa for two-way table
...a bit confused by the results returned by the functions: cohen.kappa {concord} classAgreement {e1071} when using a two-way table. for example, if I have an matrix A, and a similar matrix B (same dimensions), then: matrix A and B can be found: http://casoilresource.lawr.ucdavis.edu/drupal/files/a_40.txt http://casoilresource.lawr.ucdavis.edu/drupal/files/b_40.txt A <- matrix(unlist( read.table('a_40.txt'), use.names=FALSE), ncol=14) B <- matrix(unlist( read.table('b_40.txt'), use.names=FALSE), ncol=14) # compute cohen's kappa, default settings: cohen.kappa(table(A,B...