Create an object of class 'SansSouciStruct' with a dyadic structure
Source:R/SansSouciStruct-class.R
SansSouciDyadic.Rd
Create an object of class 'SansSouciStruct' with a dyadic structure
Usage
SansSouciDyadic(
m,
leaf_size = NULL,
height = NULL,
direction = c("bottom-up", "top-down"),
...
)
Arguments
- m
A numeric value, the number of hypotheses
- leaf_size
An integer value, the number of hypotheses in each leaf. Defaults to NULL.
- height
An integer value, the desired maximal height of the tree. Defaults to NULL.
- direction
A character value, the direction used for building the tree. Must be one of "bottom-up" or "top-down"
- ...
Further arguments to be passed to 'SansSouciStruct'
Details
If both 'leaf_size' and 'height' are NULL then a binary tree with maximal height given the total number of hypotheses is built. If both 'leaf_size' and 'height' are non NULL, then 'height' is ignored and a tree is built with the desired leaf size.