R/plot.variogram.R

Defines functions plot.vg

Documented in plot.vg

##############
# Functions for plotting variograms

plot.vg <- function(x, CTPM = NULL, col="black", col.CTPM = "red", fraction = 1, ...){
  
  SVF <- new.variogram(x)
  
  SVF@info$axes <- x@info$axes
  
  attr(SVF,"info")$lags <- attr(x,"info")$lags
  
  suppressWarnings(plot(SVF,
                        CTMM = CTPM,
                        col.CTMM = col.CTPM,
                        fraction = fraction,
                        ...))
}

Try the ctpm package in your browser

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

ctpm documentation built on Nov. 8, 2021, 5:08 p.m.