Learn R Programming

Jmisc (version 0.3.1.1)

oapply: Outer apply

Description

Outer apply It use the expand.grid to compute all possible combination of X and Y, then call the mapply with the combination generated and FUN.

Usage

oapply(X, Y, FUN, switch_order = FALSE, ...)

Arguments

X

first argument to FUN

Y

second argument to FUN

FUN

a function to apply. See mapply

switch_order

Switch the order of X and Y in expand.grid

...

other arguments to mapply

Value

same as mapply.

See Also

mapply

Examples

Run this code
# NOT RUN {
oapply(11:15,1:5,choose)
oapply(11:15,1:5,choose,switch_order=TRUE)
# }

Run the code above in your browser using DataLab