print.rfcca: Print summary output of a RFCCA analysis

View source: R/print.rfcca.R

print.rfccaR Documentation

Print summary output of a RFCCA analysis

Description

Print summary output of a RFCCA analysis. This is the default print method for the package.

Usage

## S3 method for class 'rfcca'
print(x, ...)

Arguments

x

An object of class (rfcca,grow), (rfcca,predict) or (rfcca,globalsignificance).

...

Optional arguments to be passed to other methods.

Examples


## load generated example data
data(data, package = "RFCCA")
set.seed(2345)

## train rfcca
rfcca.obj <- rfcca(X = data$X, Y = data$Y, Z = data$Z, ntree = 100,
  importance = TRUE)

## print the grow object
print(rfcca.obj)


RFCCA documentation built on Sept. 19, 2023, 9:06 a.m.