as.csv.character {csv} | R Documentation |
Treat Character as CSV filename.
Description
Treat a character string as a CSV filename.
Usage
## S3 method for class '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 |
na.strings |
passed to |
strip.white |
passed to |
check.names |
passed to |
source |
whether to assign x as the source attribute of the return value |
... |
passed to |
Details
If x is character, is length one, and is a path to a file, an attempt is made to read the file.
Value
data.frame, with attribute 'source' set to x
See Also
Other as.csv:
as.csv.data.frame()
,
as.csv()
[Package csv version 0.6.2 Index]