plots.index.corr: ~~function to do ... ~~

Description Usage Arguments Details Value Author(s) References See Also Examples

Description

~~ A concise (1-5 lines) description of what the function does. ~~

Usage

1
plots.index.corr(object, main = NULL, cex = 1, tol = 0.05)

Arguments

object

~~Describe object here~~

main

~~Describe main here~~

cex

~~Describe cex here~~

tol

~~Describe tol here~~

Details

~~ If necessary, more details than the description above ~~

Value

~Describe the value returned If it is a LIST, use

comp1

Description of 'comp1'

comp2

Description of 'comp2'

...

Author(s)

~~who you are~~

References

~put references to the literature/web site here ~

See Also

~~objects to See Also as help, ~~~

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function(object, main = NULL, cex = 1, tol = 0.05)
{
  tune.mat <- object
  if (is.null(main)) main <- ""
  # make cohort matrix
  n <- dim(tune.mat)[2]
  cohort.mat <- matrix(NA, ncol=n, nrow=dim(tune.mat)[1]+n-1)
  colnames(cohort.mat) <- colnames(tune.mat)
  for (j in 1:n) {
	  cohort.mat[,j] <- c(rep(NA,n-j),tune.mat[,j],rep(NA,j-1))
  }
  panel.pairs.cm (centre.log(cohort.mat), main = main, cex = cex, tol = tol)
  }

FRSstats documentation built on May 2, 2019, 5:18 p.m.