Nothing
#' Apply a function row-wise on a data frame with parallelism
#'
#' Applies a function `.f` to each row of a data frame `.df`, with optional parallelism and progress bar.
#' Each row is converted to a named list before being passed to `.f`, enabling flexible access to variables by name.
#'
#' @param .df A data frame whose rows will be iterated over.
#' @param .f A function applied to each row, which receives a named list.
#' @param ncores Integer. Number of cores to use for parallel processing. Default is `NULL` (sequential).
#' @param pb Logical. Whether to display a progress bar. Default is `FALSE`.
#' @param ... Additional arguments passed to `.f`.
#'
#' @return A list of results returned by applying `.f` to each row as a list.
#'
#' @examples
#' df <- data.frame(name = c("Mister", "Hipster"), age = c(30, 25))
#'
#' # Create personalized messages
#' fmapr(df, function(row) paste(row$name, "is", row$age, "years old"))
#'
#' # Row-wise model formulas
#' formulas <- data.frame(
#' response = c("y1", "y2"),
#' predictor = c("x1", "x2"),
#' stringsAsFactors = FALSE
#' )
#'
#' fmapr(formulas, function(row) {
#' reformulate(row$predictor, row$response)
#' })
#'
#' @export
fmapr <- function(.df, .f, ncores = NULL, pb = FALSE, ...) {
.f <- match.fun(.f)
rows <- split(.df, seq_len(nrow(.df)))
fapply(rows, function(row) .f(as.list(row), ...), ncores = ncores, pb = pb)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.