239239 < li >
240240 < a href ="data-handling-googlesheet-R.html "> Read data from GoogleSheet</ a >
241241 </ li >
242+ < li >
243+ < a href ="data-handling-large-files-R.html "> Reading and handling large data files in R</ a >
244+ </ li >
245+ < li >
246+ < a href ="data-handling-database-R.html "> Read data from INBO databases (SQL Server) from R</ a >
247+ </ li >
242248 </ ul >
243249</ li >
244250 </ ul >
@@ -274,23 +280,24 @@ <h2>Setup</h2>
274280 # save the token into a file in the current directory
275281 saveRDS(token, file = "googlesheets_token.rds")
276282}</ code > </ pre >
283+ < pre > < code > ## Auto-refreshing stale OAuth token.</ code > </ pre >
277284< p > Make sure the token is savely stored within your project folder without sharing it or putting it into the version control history. If you need more power (e.g. necessity of integration services such as Travis CI), check the encryption options in < a href ="https://rawgit.com/jennybc/googlesheets/master/vignettes/managing-auth-tokens.html "> this manual</ a > .</ p >
278285< p > Once registered, an overview of your available google sheets is provided as follows:</ p >
279286< pre class ="r "> < code > gs_ls()</ code > </ pre >
280- < pre > < code > ## # A tibble: 72 × 10
287+ < pre > < code > ## # A tibble: 167 × 10
281288## sheet_title author perm version
282289## <chr> <chr> <chr> <chr>
283- ## 1 Kopie van Verdeling_kre… liesel.vande … rw old
284- ## 2 Lessenreeks Wetenschapp… dirk.maes rw old
285- ## 3 IT-klankbordgroep_actie… daniel.duseu … r old
286- ## 4 Buitenlandse zendingen … liesel.vande… rw old
287- ## 5 Gebruik en onkosten dee… thierry.onke… rw old
288- ## 6 Uitgebreide lijst milie… floris.vande … r old
289- ## 7 Jarigentraktatie juli -… joris.vernai … rw old
290- ## 8 Buitenlandse zendingen … toon.westra rw old
291- ## 9 Begroting thierry.onke… rw old
292- ## 10 Uitgebreide lijst milie… floris.vande … rw old
293- ## # ... with 62 more rows, and 6 more variables: updated <dttm>,
290+ ## 1 overzicht netwerken en … tessa.vansan … rw old
291+ ## 2 LifeWatch budget en uit… peter.desmet… rw old
292+ ## 3 Open biodiversity data … peter.desmet rw old
293+ ## 4 400+ Tools and innovati… jeroensbox rw old
294+ ## 5 Smartphone_uitrol inbodata rw old
295+ ## 6 DQ Tests-Assertions - P … godfoder rw old
296+ ## 7 IDC-budget 2017 daniel.duseu … rw old
297+ ## 8 LifeWatch Monthly Activ … info55896 rw old
298+ ## 9 Bird tracking devices peter.desmet rw old
299+ ## 10 2015.05.01 Contactgegev… thomas.timme … rw old
300+ ## # ... with 157 more rows, and 6 more variables: updated <dttm>,
294301## # sheet_key <chr>, ws_feed <chr>, alternate <chr>, self <chr>,
295302## # alt_key <chr></ code > </ pre >
296303</ div >
@@ -311,6 +318,23 @@ <h2>I just want to load a google spreadsheet</h2>
311318< pre class ="r "> < code > breedingbirds <- redlists %>%
312319 gs_read(ws = "BreedingBirds")</ code > </ pre >
313320< pre > < code > ## Accessing worksheet titled 'BreedingBirds'.</ code > </ pre >
321+ < pre > < code > ##
322+ Downloading: 1.3 kB
323+ Downloading: 1.3 kB
324+ Downloading: 2.2 kB
325+ Downloading: 2.2 kB
326+ Downloading: 3 kB
327+ Downloading: 3 kB
328+ Downloading: 4.1 kB
329+ Downloading: 4.1 kB
330+ Downloading: 4.6 kB
331+ Downloading: 4.6 kB
332+ Downloading: 5.6 kB
333+ Downloading: 5.6 kB
334+ Downloading: 5.6 kB
335+ Downloading: 5.6 kB
336+ Downloading: 5.6 kB
337+ Downloading: 5.6 kB</ code > </ pre >
314338< pre > < code > ## No encoding supplied: defaulting to UTF-8.</ code > </ pre >
315339< p > Inspecting the data of the sheet:</ p >
316340< pre class ="r "> < code > class(breedingbirds)</ code > </ pre >
0 commit comments