Description Usage Arguments Value Examples
Finds initial cliques using a sparse PCA on bootstraps sub-samples
1 | boot_FitSparsePCA(M, B, r, min.size = 1, cores = 1, unique = TRUE)
|
M |
Gaussian proxy for the original dataset. Possibly obtained using PLNmodels. |
B |
Number of bootstrap samples. |
r |
Number of missing actors. |
min.size |
Minimum number of neighbors of missing actors. |
cores |
Number of cores for parallel computation (uses mclapply, not available for Windows). |
unique |
Boolean for keeping only unique results. |
cliqueList: list of all cliques found. Each element is itself a list of size r.
nb_occ: vector of the number of times each cliques has been found by sPCA.
1 2 3 | data=generate_missing_data(n=100,p=10,r=1,type="scale-free", plot=TRUE)
PLNfit=norm_PLN(data$Y)
boot_FitSparsePCA(PLNfit$MO, B=100, r=1)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.