Skip to contents

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 tna or group_tna object.

...

Ignored.

Value

A tna or group_tna object that has not been pruned.

Examples

model <- tna(group_regulation)
pruned_model <- prune(model, method = "threshold", threshold = 0.1)
depruned_model <- deprune(pruned_model) # restore original model