deprune {tna} | R Documentation |
Restore a Pruned Transition Network Analysis Model
Description
Restore a Pruned Transition Network Analysis Model
Usage
deprune(x, ...)
## S3 method for class 'tna'
deprune(x, ...)
## S3 method for class 'tna'
reprune(x, ...)
## S3 method for class 'group_tna'
deprune(x, ...)
Arguments
x |
A |
... |
Ignored. |
Value
A tna
or group_tna
object that has not been pruned.
See Also
Validation functions
bootstrap()
,
estimate_cs()
,
permutation_test()
,
permutation_test.group_tna()
,
plot.group_tna_bootstrap()
,
plot.group_tna_permutation()
,
plot.group_tna_stability()
,
plot.tna_bootstrap()
,
plot.tna_permutation()
,
plot.tna_stability()
,
print.group_tna_bootstrap()
,
print.group_tna_permutation()
,
print.group_tna_stability()
,
print.summary.group_tna_bootstrap()
,
print.summary.tna_bootstrap()
,
print.tna_bootstrap()
,
print.tna_permutation()
,
print.tna_stability()
,
prune()
,
pruning_details()
,
reprune()
,
summary.group_tna_bootstrap()
,
summary.tna_bootstrap()
Examples
model <- tna(group_regulation)
pruned_model <- prune(model, method = "threshold", threshold = 0.1)
depruned_model <- deprune(pruned_model) # restore original model
[Package tna version 1.0.0 Index]