Displaying 1 result from an estimated 1 matches for "reviewer1".
Did you mean:
reviewers
2011 Feb 25
0
Help with card-sorting experiment
...he reviewers (which I am able to do).
I would like to be able to load in several of these vectors at once so that
I can create a big matrix with all of the data in it, and I currently do
this using read.table()
PROBLEM 1)
When I attempt to do the Adjusted Rand Index calculation I do this:
reviewer1 <- read.table(<filename>, sep=",") (they are csv files)
.
Then I try to make a big matrix by doing this:
rset[1] <- reviewer1
rset[2] <- reviewer2 .
So when I try to do
adjustedRandIndex(rset[1],rset[2])
I get an error message:...