R/read_Text.R

Defines functions read_Text

Documented in read_Text

#' To read text in rstudio source to dataframe
#'
#' @param text
#'
#' @return dataframe
#' @export
#'
#' @examples read_text()
read_Text <- function(text){
  read.table(header = TRUE,text = text)
}
yikeshu0611/onetree documentation built on Aug. 26, 2019, 9:18 p.m.