Skip to content

Commit b2b3c48

Browse files
authored
Merge pull request #15 from inbo/odbc
Odbc
2 parents 0d4054d + 225fe12 commit b2b3c48

20 files changed

Lines changed: 18210 additions & 15 deletions

docs/data-handling-database-R.html

Lines changed: 432 additions & 0 deletions
Large diffs are not rendered by default.

docs/data-handling-googlesheet-R.html

Lines changed: 36 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,12 @@
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 = &quot;googlesheets_token.rds&quot;)
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
## &lt;chr&gt; &lt;chr&gt; &lt;chr&gt; &lt;chr&gt;
283-
## 1 Kopie van Verdeling_kre… liesel.vande… rw old
284-
## 2 Lessenreeks Wetenschapp… dirk.maes rw old
285-
## 3 IT-klankbordgroep_actie… daniel.duseur 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.vander 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 &lt;dttm&gt;,
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 &lt;dttm&gt;,
294301
## # sheet_key &lt;chr&gt;, ws_feed &lt;chr&gt;, alternate &lt;chr&gt;, self &lt;chr&gt;,
295302
## # alt_key &lt;chr&gt;</code></pre>
296303
</div>
@@ -311,6 +318,23 @@ <h2>I just want to load a google spreadsheet</h2>
311318
<pre class="r"><code>breedingbirds &lt;- redlists %&gt;%
312319
gs_read(ws = &quot;BreedingBirds&quot;)</code></pre>
313320
<pre><code>## Accessing worksheet titled &#39;BreedingBirds&#39;.</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>

docs/data-handling-large-files-R.html

Lines changed: 17520 additions & 1 deletion
Large diffs are not rendered by default.
-1.17 KB
Loading

docs/development-styleguide-R.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,12 @@
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>

docs/development-styleguide-repos.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,12 @@
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>

docs/index.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,12 @@
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>

docs/installation-R-admin.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,12 @@
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>

docs/installation-R-user.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,12 @@
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>

docs/installation-RStudio-admin.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,12 @@
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>

0 commit comments

Comments
 (0)