multihyp {hypeR} | R Documentation |
A multihyp object
A multihyp object
A list of hyp
objects
print(multihyp)
shows some information about the object data
multihyp$as.list()
returns a list of hyp
objects as dataframes.
hyp
new()
multihyp$new(data)
print()
multihyp$print(...)
as.list()
multihyp$as.list(...)
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)