read.csv0: Read CSVs without factors

read.csv0R Documentation

Read CSVs without factors

Description

read.csv0 is to read.csv what paste0 is to paste. More often that not, I see people using read.csv with stringsAsFactors = FALSE (like you will often see people calling paste with sep = ''). This is a variant where stringsAsFactors is preset. Relies on the curry function.

Usage

read.csv0(
  file,
  header = TRUE,
  sep = ",",
  quote = "\"",
  dec = ".",
  fill = TRUE,
  comment.char = "",
  ...,
  stringsAsFactors = FALSE
)

Arguments

...

See parameters for read.csv

Value

See help page for read.csv

Examples

# See help page for \code{\link{read.csv}}


adamleerich/alrtools documentation built on March 12, 2024, 11:38 p.m.