Description Usage Arguments Examples
View source: R/convexLogisticPCA.R
Plots the results of a convex logistic PCA
| 1 2 | 
| x | convex logistic PCA object | 
| type | the type of plot  | 
| ... | Additional arguments | 
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | # 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
# run convex logistic PCA on it
clpca = convexLogisticPCA(mat, k = 2, m = 4, main_effects = FALSE)
## Not run: 
plot(clpca)
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.