We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c20e16 commit b14790aCopy full SHA for b14790a
_quarto.yml
@@ -8,6 +8,8 @@ website:
8
left:
9
- href: index.qmd
10
text: Home
11
+ - href: hands-on.qmd
12
+ text: Hands-on
13
- href: about.qmd
14
text: "About RDS"
15
tools:
hands-on.qmd
@@ -0,0 +1,21 @@
1
+---
2
+title: "Hands-on DuckDB & dplyr"
3
4
+
5
+## Let's connect to our first database
6
7
+Loading the necessary packages. DuckDB has its own R package that is mostly a wrapper around dbplyr
+```{r}
+library(tidyverse)
+# install.packages("duckdb")
+library(duckdb)
+```
16
+Create an empty database and save it to disk
17
18
19
+con <- dbConnect(duckdb::duckdb(), dbdir = "birds.duckdb", read_only = FALSE)
20
21
0 commit comments