R/read_df.R

Defines functions read_df

Documented in read_df

#' Read in a data frame in the clipboard, copied from Excel
#' 
#' @param header Logical value to specify whether copied table contains a header row.
#' @param ... Additional arguments for read.table().
#' @export
read_df <- function(header=TRUE,...) {
  read.table("clipboard",sep="\t",header=header,...)
}
martinctc/surveytools documentation built on Nov. 21, 2024, 10:48 p.m.