add bare read_from_csv_or_fetch

This commit is contained in:
2021-08-11 09:15:26 +02:00
parent 9d456bfa60
commit ecb5677703
7 changed files with 33 additions and 10 deletions
+3 -2
View File
@@ -38,9 +38,10 @@ talks <- res$talks
We also used `repair` to fix a bunch of formatting issues in the records and unpacked
the result into more descriptive variables.
For development purposes, we load the tables from csv files.
For development purposes, we only fetch records if they are not already
stored as csv files:
```{r}
tables <- read_from_csv('../inst/csv/')
tables <- read_from_csv_or_fetch('../inst/')
comments <- tables$comments
speeches <- tables$speeches