R/getVars.R

Defines functions getVars

Documented in getVars

#' Retrieves variable names from a quitte object
#'
#' Retrieves variable names from a quitte object
#'
#'
#' @param df quitte object
#' @return a character vector containing the values of the column without
#'   duplicates
#' @author Antoine Levesque
#' @examples
#'
#'   \dontrun{
#'     getVars(dataframe)
#'   }
#' @export



getVars <- function(df){
  tmp = getColValues(df,"variable")
  return(tmp)
}
pik-piam/quitte documentation built on April 5, 2024, 12:23 a.m.