Skip to content

Instantly share code, notes, and snippets.

View markdanese's full-sized avatar

Mark Danese markdanese

  • Outcomes Insights, Inc.
  • Calabasas, CA
  • 18:22 (UTC -07:00)
View GitHub Profile
@jbryer
jbryer / strtable.R
Last active December 21, 2023 21:36
Implementation of the str function to return a data.frame
#' Creates a \code{data.frame} version of the str function for data.frames.
#'
#' Note that this function only works with \code{data.frames}. The function
#' will throw an error for any other object types.
#'
#' @param n the first n element to show
#' @param width maximum width in characters for the examples to show
#' @param n.levels the first n levels of a factor to show.
#' @param width.levels maximum width in characters for the number of levels to show.
#' @param factor.values function defining how factor examples should be printed.