hyp {hypeR} | R Documentation |
A hyp object
A hyp object
A dataframe returned by hypeR
A list of plots returned by hypeR
A list of arguments passed to hypeR
print(hyp)
shows some information about the object data as
well as the arguments used in creating it.
hyp$as.data.frame()
returns the dataframe slot.
multihyp
new()
hyp$new(data, plots = NULL, args = NULL)
print()
hyp$print(...)
as.data.frame()
hyp$as.data.frame(...)
clone()
The objects of this class are cloneable with this method.
hyp$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)