selection.neighborhood | R Documentation |
Apply neighborhood selection method by considering conditional density function on each variable.
selection.neighborhood(data, ...)
data |
Data frame |
... |
Any options can be defined.
|
# Parallel backend library(doMC) library(foreach) library(huge) registerDoMC(20) n <- 200; p <- 20 # Simulate high dimension data set.seed(5732) z <- huge.generator(n, d = p, graph = "random", prob = .2, verbose = FALSE, vis = FALSE, v = .65) data <- data.frame(z$data) edge.selection(data = data, family = "neighborhood")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.