apply_expand.grid: Applying a Function to All Combinations of the Supplied...

View source: R/apply_expand.grid.R

apply_expand.gridR Documentation

Applying a Function to All Combinations of the Supplied Vectors

Description

A wrapper of the functions apply and expand.grid. Returns a data frame of values obtained by applying a function to all combinations of the supplied vectors. Firstly, the function expand.grid will be used for the supplied vectors in ... and we will get a data frame containing one row for each combination of the supplied vectors. Then the function will be applied to each row of the data frame. The values of the data frame will also be included in the returned data frame.

Usage

apply_expand.grid(FUN, ...)

Arguments

FUN

the function to be applied. The argument is a numeric vector.

...

numeric vectors.

Value

A data frame.

Examples


apply_expand.grid(prod, a = 1:9, b = 1:9)

####
f <- function(x) c(r1 = sum(x), r2 = unname(x["b"] - x["a"]))
apply_expand.grid(f, a = c(1, 2), b = c(3, 4))

####
f <- function(x) list(list(sum(x)), prod(x))
apply_expand.grid(f, a = c(1, 2), b = c(3, 4))

####
f <- function(x) {
  result <- SCES_A(alpha = 1, Beta = c(0.5, 0.5), p = c(x["p1"], 1), es = x["es"])
  names(result) <- c("dc1", "dc2")
  result
}

apply_expand.grid(f, p1 = seq(0.1, 10, 0.1), es = c(0.3, 0.5, 1))



GE documentation built on Nov. 8, 2023, 9:07 a.m.

Related to apply_expand.grid in GE...