csv (version 0.6.1)

as.csv.character: Treat Character as CSV filename.

Description

Treat a character string as a CSV filename.

Usage

# S3 method for character
as.csv(
  x,
  as.is = TRUE,
  na.strings = c("", "\\s", ".", "NA"),
  strip.white = TRUE,
  check.names = FALSE,
  source = getOption("csv_source", TRUE),
  ...
)

Arguments

x

character file path

as.is

passed to read.csv

na.strings

passed to read.csv

strip.white

passed to read.csv

check.names

passed to read.csv

source

whether to assign x as the source attribute of the return value

...

passed to read.csv if accepted by read.table

Value

data.frame, with attribute 'source' set to x

Details

If x is character, is length one, and is a path to a file, an attempt is made to read the file.

See Also

Other as.csv: as.csv.data.frame(), as.csv()