Description Usage Arguments Value Author(s) Examples
Applies a network filtering methodology to neural network array.
Removes edges from the neural network output from convertConnBrainMat
using a network filtering approach
1 2 3 4 5 6 | neuralnetfilter(
neuralarray,
method = c("TMFG", "MaST", "ECOplusMaST", "ECO", "threshold"),
progBar = TRUE,
...
)
|
neuralarray |
Array from |
method |
Filtering method to be applied |
progBar |
Should progress bar be displayed?
Defaults to |
... |
Additional arguments from network filtering methods |
Returns an array of n x n x m filtered matrices
Alexander Christensen <alexpaulchristensen@gmail.com>
1 2 3 4 5 6 7 8 9 | ## Not run: neuralarray <- convertConnBrainMat()
filteredneuralarray <- neuralnetfilter(neuralarray, method = "threshold", thresh = .50)
dependencyarray <- depna(neuralarray)
filtereddependencyarray <- neuralnetfilter(dependencyarray, method = "TMFG", depend = TRUE)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.