mapmf {mefa} | R Documentation |
Plots spatial representation of a numeric vector based on xy
coordinates.
mapmf(xy, z, probs = seq(0, 1, 0.25), type = "heat", pch = 21, cex = 1.5, ...)
xy |
a matrix with 2 columns |
z |
a numeric vector to be plotted according the xy . |
probs |
probs argument used by qdef , numeric vector of probabilities with values in [0,1] . |
type |
~~Describe type here~~ |
pch |
default for pch used in the plot (see par ). |
cex |
default for cex used in the plot (see par ). |
... |
Arguments to be passed to methods, such as graphical parameters (see par ). |
This function will be replaced soon.
Peter Solymos, Solymos.Peter@aotk.szie.hu, http://www.univet.hu/users/psolymos/personal/
x <- rep(1:10,10) y <- rep(1:10, each=10) z <- rpois(100,10) mapmf(cbind(x,y),z,type="grey") mapmf(cbind(x,y),z,NULL)