Displaying 1 result from an estimated 1 matches for "biggest4".
Did you mean:
biggest
2001 Dec 12
1
can't vectorize an expression
...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 relatively easy:
plot(b[,1:2],pch=16,cex=0.2)
matplot(land$lat[biggest1],land$long[biggest1], col="red", type="p",pch=16,add=TRUE)
matplot(land$l...