multihyp {hypeR}R Documentation

A multihyp object

Description

A multihyp object

A multihyp object

Arguments

data

A list of hyp objects

Methods

print(multihyp) shows some information about the object data

multihyp$as.list() returns a list of hyp objects as dataframes.

See Also

hyp

Methods

Public methods


Method new()

Usage
multihyp$new(data)

Method print()

Usage
multihyp$print(...)

Method as.list()

Usage
multihyp$as.list(...)

Method clone()

The objects of this class are cloneable with this method.

Usage
multihyp$clone(deep = FALSE)
Arguments
deep

Whether to make a deep clone.

Examples

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)


[Package hypeR version 1.4.0 Index]