R/desscoptous.R

Defines functions desscoptous

Documented in desscoptous

desscoptous <-
function(copest,normalize=FALSE)
{
  dim=length(copest$varnames)
  op <- par(mfrow=c(dim,dim))
  for (i in 1:dim)
  {
    for (j in 1:dim)
    {
      if (i==j)
      {
        plot.new()
        text(0.5,0.5,copest$varnames[i])
      }
      else
      {
        desscop(copest,copest$varnames[i],copest$varnames[j],normalize,FALSE)
      }
    }
  }
  par(op)
}

Try the subrank package in your browser

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

subrank documentation built on April 6, 2023, 1:11 a.m.