hyp {hypeR}R Documentation

A hyp object

Description

A hyp object

A hyp object

Arguments

data

A dataframe returned by hypeR

plots

A list of plots returned by hypeR

args

A list of arguments passed to hypeR

Methods

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.

See Also

multihyp

Methods

Public methods


Method new()

Usage
hyp$new(data, plots = NULL, args = NULL)

Method print()

Usage
hyp$print(...)

Method as.data.frame()

Usage
hyp$as.data.frame(...)

Method clone()

The objects of this class are cloneable with this method.

Usage
hyp$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)


[Package hypeR version 1.4.0 Index]