R/make.multigrid.R

Defines functions make.multigrid

Documented in make.multigrid

make.multigrid <-
function(x,y,z,group,...){
  grd <- NULL
  for(g in unique(as.character(group))){
    i <- which(group==g)
    grd[[g]] <- make.grid(x[i],y[i],z[i],...)
  }
  return(grd)
}

Try the mapplots package in your browser

Any scripts or data that you put into this service are public.

mapplots documentation built on Aug. 25, 2023, 5:15 p.m.