TreeHybridizingOptions | R Documentation |
TreeHybridizingOptions
is an R6 class that defines the set of
parameters required for performing tree hybridizing operations in
nitro
.
rounds
An integer value indicating the number of rounds of tree-hybridizing to perform.
hybridizations
An integer value indicating the number of hybridizations to perform in each round.
best_trees
An integer value indicating the number of best trees from the previous round of hybridizing to use in the next round.
replace
A logical value indicating whether to replace the source tree with a better tree produced by hybridizing.
sample_factor
An integer value indicating the number of times to increase the size of initial tree set by. The corresponding number of trees to retain will be proportional to the inverse of this value.
new()
TreeHybridizingOptions$new( rounds = 1, hybridizations = 1000, best_trees = 50, replace = TRUE, sample_factor = 15 )
rounds
An integer value indicating the number of rounds of tree-hybridizing to perform.
hybridizations
An integer value indicating the number of hybridizations to perform in each round.
best_trees
An integer value indicating the number of best trees from the previous round of hybridizing to use in the next round.
replace
A logical value indicating whether to replace the source tree with a better tree produced by hybridizing.
sample_factor
An integer value indicating the number of times to increase the size of initial tree set by. The corresponding number of trees to retain will be proportional to the inverse of this value.
print()
TreeHybridizingOptions$print(...)
...
Ignored.
queue()
TreeHybridizingOptions$queue(...)
...
Ignored.
clone()
The objects of this class are cloneable with this method.
TreeHybridizingOptions$clone(deep = FALSE)
deep
Whether to make a deep clone.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.