callfest: callfest.

Description Usage Arguments Value Examples

Description

callfest.

Calls a function over a list of arguments which are combinations of the provided dotted arguments.

Usage

1
callfest(control, ...)

Arguments

control

A callfestControl object of a function to be applied to combinations.

...

List of arguments which will be used for combinations.

Value

An instance of class callfest which encapsulates results and the elapsed time.

Examples

1
2
3
4
5
6
7
8
## Create a control instance:
control <- callfestControl(list, N=1, parallel=FALSE)

## Call fest:
result <- callfest(control, a=1:2, b=c("a", "b"))

## This is equivalent to:
result <- callfest(list, a=1:2, b=c("a", "b"))

vst/callfest documentation built on May 3, 2019, 7:09 p.m.