summary {bpca}R Documentation

Summary Method for bpca Objects

Description

Returns (and prints) a summary list for bpca.2d and bpca.3d objects.

Usage

  ## S3 method for class 'bpca.2d':
  summary(object, ...)
  ## S3 method for class 'bpca.3d':
  summary(object, ...)

Arguments

object A given object of the class bpca.2d or bpca.3d.
... Potential further arguments (require by generic).

Author(s)

Jose Claudio Faria (joseclaudio.faria@gmail.com)
and
Clarice Garcia Borges Demetrio (clarice@esalq.usp.br)

See Also

bpca

Examples

  ##
  ## Example 1
  ## bpca - 2d
  ##

  library(bpca)
  bp <- bpca(gabriel1971)
  bp

  summary(bp)

  ##
  ## Example 2
  ## bpca - 3d
  ##

  bp <- bpca(gabriel1971, lambda.end=3)
  bp

  summary(bp)

[Package bpca version 1.0.2 Index]