Description Usage Arguments Value Examples
View source: R/convexLogisticPCA.R
Run cross validation on dimension and m
for convex logistic PCA
1 |
x |
matrix with all binary entries |
ks |
the different dimensions |
ms |
the different approximations to the saturated model |
folds |
if |
quiet |
logical; whether the function should display progress |
Ms |
depricated. Use |
... |
Additional arguments passed to convexLogisticPCA |
A matrix of the CV negative log likelihood with k
in rows and
m
in columns
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.clpca(mat, ks = 1:9, ms = 3:6)
plot(negloglikes)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.