umx (version 4.0.0)

umx_apply: umx_apply

Description

Tries to make apply more readable. so "mean of x by columns", instead of "of x, by 2, mean" Other functions to think of include: cumsum(), rowSums(), colMeans(), etc.

Usage

umx_apply(FUN, of, by = c("columns", "rows"), ...)

Arguments

FUN

The function to apply.

of

The dataframe to work with.

by

Apply the function to columns or to rows (default = "columns")

...

optional arguments to FUN, e.g., na.rm = TRUE.

Value

  • object

References

See Also

Other Miscellaneous Stats Helpers: FishersMethod(), SE_from_p(), oddsratio(), reliability(), umxCov2cor(), umxHetCor(), umxWeightedAIC(), umx_cor(), umx_means(), umx_r_test(), umx_round(), umx_scale(), umx_var(), umx

Examples

Run this code
# NOT RUN {
umx_apply(mean, mtcars, by = "columns")
umx_apply("mean", of = mtcars, by = "columns")
tmp = mtcars[1:3,]; tmp[1,1]=NA
umx_apply("mean", by = "rows", of = tmp)
umx_apply("mean", by = "rows", of = tmp, na.rm = TRUE)
# }

Run the code above in your browser using DataLab