plot.cv.lpca: Plot CV for logistic PCA

Description Usage Arguments Examples

View source: R/logisticPCA.R

Description

Plot cross validation results logistic PCA

Usage

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

Arguments

x

a cv.lpca 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 logit scale
rows = 100
cols = 10
set.seed(1)
mat_logit = outer(rnorm(rows), rnorm(cols))

# generate a binary matrix
mat = (matrix(runif(rows * cols), rows, cols) <= inv.logit.mat(mat_logit)) * 1.0

## Not run: 
negloglikes = cv.lpca(dat, ks = 1:9, ms = 3:6)
plot(negloglikes)

## End(Not run)

andland/logisticPCA documentation built on Sept. 13, 2020, 12:24 a.m.