multihyp {hypeR} | R Documentation |
A multihyp object
A multihyp object
hyp
data
A list of hyp objects
new()
Create a multihyp object
multihyp$new(data)
data
A list of hyp objects
A new multihyp object
print()
Print multihyp obect
multihyp$print()
NULL
as.list()
Print multihyp obect
multihyp$as.list()
A list of hyp objects as dataframes
clone()
The objects of this class are cloneable with this method.
multihyp$clone(deep = FALSE)
deep
Whether to make a deep clone.
data <- data.frame(replicate(5,sample(0:1,10,rep=TRUE))) args <- list("arg_1"=1, "arg_2"=2, "arg_3"=3) hyp_obj <- hyp$new(data, args=args) data <- list("hyp_1"=hyp_obj, "hyp_2"=hyp_obj,"hyp_3"=hyp_obj) multihyp_obj <- multihyp$new(data)