read.simple.csv | R Documentation |
Read in a file with excel style data: rownames in col1, headers SHIFTED. The header should start with a TAB / First column name should be empty.
read.simple.csv(
...,
colnames = TRUE,
coltypes = NULL,
wRownames = TRUE,
NaReplace = TRUE,
asTibble = FALSE,
nmax = Inf
)
... |
Multiple simple variables to parse. |
colnames |
Are there column names?, Default: TRUE |
coltypes |
What type of variables are in columns? Auto-guessing can be very slow., Default: NULL |
wRownames |
With rownames?, Default: TRUE |
NaReplace |
Replace NA-values?, Default: TRUE |
asTibble |
Load as tibble or dataframe?, Default: FALSE (=load as df) |
nmax |
Max number of rows to read, Default: Inf |
read_delim
na.replace
## Not run:
if (interactive()) {
# read.simple.csv("path/to/my.file")
}
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.