Skip to content

Commit 3284067

Browse files
committed
update cache handling
1 parent 9a5e942 commit 3284067

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

source/data-handling-large-files-R.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ output: html_document
66
---
77

88
```{r setup, include=FALSE}
9-
knitr::opts_chunk$set(echo = TRUE)
9+
knitr::opts_chunk$set(echo = TRUE, cache = TRUE)
1010
```
1111

1212
## Intro
@@ -312,7 +312,7 @@ csv_to_sqlite <- function(csv_file, sqlite_file, table_name,
312312

313313
As an example, let's convert the processed bird logs csv file to a sqlite database, called `example.sqlite` as a table `birdtracks`. Using the default values for the preprocessing number of lines and the chunk size, the conversion is as follows:
314314

315-
```{r runcssv2sqlite}
315+
```{r runcssv2sqlite, warning=FALSE, message=FALSE}
316316
sqlite_file <- "example2.sqlite"
317317
table_name <- "birdtracks"
318318

0 commit comments

Comments
 (0)