From 39f797e6cd59096a9f3d45890b9677ad22e7639f Mon Sep 17 00:00:00 2001 From: florisvdh Date: Tue, 14 Aug 2018 14:00:36 +0200 Subject: [PATCH] Vignette: replace 'format' by 'extension' --- vignettes/data-repository.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vignettes/data-repository.Rmd b/vignettes/data-repository.Rmd index 5018d985f..4c3b01ba0 100644 --- a/vignettes/data-repository.Rmd +++ b/vignettes/data-repository.Rmd @@ -75,7 +75,7 @@ data_repo <- init(path, project = "test") ### Storing data -Use `write_delim_git()` to store a `data.frame` into the data repository. The function will separate the data and the metadata. The data is stored as a headerless, unquoted tab delimited file with ".tsv" extension and UTF-8 encoding. The metadata is stored in YAML format with ".yml" format. Therefore any extension given to the `file` will be stripped (with a warning). +Use `write_delim_git()` to store a `data.frame` into the data repository. The function will separate the data and the metadata. The data is stored as a headerless, unquoted tab delimited file with ".tsv" extension and UTF-8 encoding. The metadata is stored in YAML format with ".yml" extension. Therefore any extension given to the `file` will be stripped (with a warning). The function will do a lot more preprocessing to the data in order to keep the file and the diff as small as possible. That is the reason why the data is stored headerless and unquoted.