Displaying 1 result from an estimated 1 matches for "polviv".
Did you mean:
pollin
2009 Mar 10
2
ordering
...* 2 * test
aulac * 33 * 0 * 0.1 * 0.1 * test
buell * 33 * 0 * 0.1 * 0.1 * test
camlas * 33 * 0 * 0.1 * 0.1 * test
carbig * 33 * 1 * 1 * 1 * test
poaarc * 67 * 0 * 0.1 * 0.1 * test
polviv * 67 * 0 * 0.1 * 0.1 * test
where R interprets 100 to be the lowest value and orders increasing from there.
> is.numeric(test[,2])
[1] FALSE
> is.double(test[,2])
[1] FALSE
> is.integer(test[,2])
[1] FALSE
> is.real(test[,2])
[1] FALSE
My questions a...