R/accessor-methods.r

# accessor functions (get / set) for objects

setGeneric(
  name = "getFrequencies",
  def = function(x) standardGeneric("getFrequencies")
)

setMethod(
  f = "getFrequencies",
  signature = "RLBigData",
  definition = function(x) 
    if (length(x@excludeFld)!=0)
      x@frequencies[-x@excludeFld]
    else x@frequencies
)

Try the RecordLinkage package in your browser

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

RecordLinkage documentation built on Nov. 10, 2022, 5:42 p.m.