I'm trying to do this with base-r
plot(x=NA, ylim = range(smokyants$elevation_m), xlim = range(smokyants[,5:42]))
for(ii in seq(1,length(ants)))
{
points(unlist(elevation)~unlist(ants[ii]))
#symbols(smokyants$elevation_m, unlist(ants[ii]), circles = unlist(ants[ii]))
}
I'd like to use symbols() the way I'm using points(), above. But when I do it'll display multiple plots. However points() will behave how I want and will layer everything onto one graph.
Thanks in advance.