R/inlineDataFrame.R

Defines functions inlineDataFrame

Documented in inlineDataFrame

#' inline data frame
#' 
#' utility function to inline creation of a data frame
#' 
#' @param str text representation of the data frame
#' @param header see \code{\link{read.table}}
#' @param colClasses see \code{\link{read.table}}
#' @param \dots see \code{\link{read.table}}
#' @importFrom utils read.table
#' @export
inlineDataFrame <- function(str, header = TRUE, colClasses = NA, ...){
  lixoft.read.table( file = NULL, text = str, header = header, colClasses = colClasses, ... )
}
MarcLavielle/mlxR documentation built on May 28, 2023, 4:25 p.m.