R/deprecated.R

Defines functions get_matrix2dataframe get_dataframe get_matrix reader

get_matrix2dataframe <- function(...) {
  warning("This function was deprecated in chunkR 1.1.0. 
           Use the function 'matrix2df' or read the data directly as 
           a dataframe with a chunker object.")
  invisible(NULL)
}


get_dataframe <- function(...) {
  warning("This function was deprecated in chunkR 1.1.0. 
           Use the function 'get_table'.")
  invisible(NULL)
}


get_matrix <- function(...) {
  warning("This function was deprecated in chunkR 1.1.0. 
           Use the function 'get_table'.")
  invisible(NULL)
}


reader <- function(...) {
  warning("This function was deprecated in chunkR 1.1.0. 
          Use the function 'chunker'")
  invisible(NULL)
}

Try the chunkR package in your browser

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

chunkR documentation built on May 1, 2019, 6:34 p.m.