add_null_dims: add_null_dims: Add null dimensions to another function....

Description Usage Arguments Value Examples

View source: R/add_null_dims.R

Description

add_null_dims: Add null dimensions to another function. Allows you to pass in input data with any number of dimensions and it will only keep the first nactive.

Usage

1
add_null_dims(func, nactive)

Arguments

func

Function to add null dimensions to

nactive

Number of active dimensions in func

Value

Function that can take any dimensional input

Examples

1
2
3
banana(c(.1,.2))
# banana(c(.1,.2,.4,.5,.6,.7,.8)) # gives warning
add_null_dims(banana, nact=2)(c(.1,.2,.4,.5,.6,.7,.8))

TestFunctions documentation built on May 2, 2019, 2:42 a.m.