plot.cv.gpca: Plot CV for generalized PCA

Description Usage Arguments Examples

Description

Plot cross validation results generalized PCA

Usage

1
2
## S3 method for class 'cv.gpca'
plot(x, ...)

Arguments

x

a cv.gpca object

...

Additional arguments

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
# construct a low rank matrix in the natural parameter space
rows = 100
cols = 10
set.seed(1)
mat_np = outer(rnorm(rows), rnorm(cols))

# generate a count matrix
mat = matrix(rpois(rows * cols, c(exp(mat_np))), rows, cols)

## Not run: 
loglikes = cv.gpca(mat, ks = 1:9, Ms = 3:6, family = "poisson")
plot(loglikes)

## End(Not run)

andland/generalizedPCA documentation built on May 12, 2019, 2:42 a.m.