search for: biggest1

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

Did you mean: biggest
2001 Dec 12
1
can't vectorize an expression
...t;- as.numeric(names(top)) So far so good: top.values holds the descriptions of the largest equivalence classes first. Now things turn to custard; the following lines show the only way I could think of to extract the six largest equivalence classes: which(land$description == top.values[1]) -> biggest1 which(land$description == top.values[2]) -> biggest2 which(land$description == top.values[3]) -> biggest3 which(land$description == top.values[4]) -> biggest4 which(land$description == top.values[5]) -> biggest5 which(land$description == top.values[6]) -> biggest6 plotting them is...