3 Commits
Author SHA1 Message Date
christian a2663b2e90 explain where vignettes are available 2021-08-11 23:40:32 +02:00
christian ab0fa33172 fix typo in readme 2021-08-11 23:36:40 +02:00
christian 83cdcc279b fix formatting in readme 2021-08-11 23:33:02 +02:00
+7 -7
View File
@@ -22,21 +22,21 @@ git clone https://git.flavigny.de/christian/hateimparlament
cd hateimparlament cd hateimparlament
``` ```
Then open a `R` shell and do Then open a `R` shell and do
``` ```r
devtools::load_all() # load package devtools::load_all() # load package
devtools::wd() # set working directory devtools::wd() # set working directory
``` ```
Then fetch all records, read them and write the parsed tibbles to csv files. Then fetch all records, read them and write the parsed tibbles to csv files.
``` ```r
fetch_all(create = TRUE) fetch_all(create = TRUE)
read_all() %>% repair() -> res read_all() %>% repair() -> res
write_to_csv(create = TRUE) write_to_csv(res, create = TRUE)
``` ```
Now you can build the vignettes faster by using Now you can install the package with vignettes by using
```r
devtools::install(build_vignettes = TRUE)
``` ```
devtools::install(build_vignettes = T) This makes all vignettes available via `browseVignettes()`.
```
This creates a `doc/` directory with all built vignettes.
# Features # Features