R/CorMatrix.R

#'CorMatrix class that is used to store correlation matrices

setClass(
  "CorMatrix",
  slots = list(
    coord1 = "data.frame",
    coord2 = "data.frame",
    cormat = "data.frame"
  )
)
FabianErdel/RWire documentation built on May 26, 2019, 7:26 a.m.