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 Nov. 2, 2023, 6:25 p.m.