R/data-frame.r

Defines functions as.data.frame.function

Documented in as.data.frame.function

#' Make a function return a data frame.
#'
#' Create a new function that returns the existing function wrapped in a
#' data.frame with a single column, \code{value}.
#'
#' This is useful when calling \code{*dply} functions with a function that
#' returns a vector, and you want the output in rows, rather than columns.
#' The \code{value} column is always created, even for empty inputs.
#'
#' @keywords manip
#' @param x function to make return a data frame
#' @param row.names necessary to match the generic, but not used
#' @param optional necessary to match the generic, but not used
#' @param ... necessary to match the generic, but not used
#' @method as.data.frame function
#' @export
as.data.frame.function <- function(x, row.names, optional, ...) {
  function(...) data.frame(value = x(...))
}
hadley/plyr documentation built on Oct. 15, 2023, 8:20 a.m.