R/head.edsurvey.data.frame.R

Defines functions head.edsurvey.data.frame

# @author Paul Bailey
#' @method head edsurvey.data.frame
#' @export
head.edsurvey.data.frame <- function(x, ...) {
  edf <- getData(x,
    varnames = colnames(x),
    dropUnusedLevels = FALSE, omittedLevels = FALSE,
    addAttributes = FALSE
  )
  head(edf, ...)
}

Try the EdSurvey package in your browser

Any scripts or data that you put into this service are public.

EdSurvey documentation built on June 27, 2024, 5:10 p.m.