read_csv {kim} | R Documentation |
Read a csv file
Description
Read a csv file
Usage
read_csv(name = NULL, head = FALSE, dirname = NULL, ...)
Arguments
name |
a character string of the csv file name without the
".csv" extension. For example, if the csv file to read is "myfile.csv",
enter |
head |
logical. if |
dirname |
a character string of the directory containing
the csv file, e.g., |
... |
optional arguments for the |
Value
the output will be a data.table object, that is,
an output from the data.table function, fread
Examples
## Not run:
mydata <- read_csv("myfile")
## End(Not run)
[Package kim version 0.5.422 Index]