Skip to content

Commit b61c1bd

Browse files
committed
order of elements
1 parent d6978f7 commit b61c1bd

File tree

1 file changed

+14
-22
lines changed

1 file changed

+14
-22
lines changed

slides/larger-than-RAM-datasets_DuckDB_parquet.qmd

Lines changed: 14 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,8 @@ R for Lunch: a lunchtime learning series\
107107

108108
\
109109

110-
111110
::: columns
112111
::: {.column width="50%"}
113-
114112
### {dplyr}
115113

116114
```
@@ -122,16 +120,13 @@ mysw |>
122120

123121
\
124122

125-
::::: {style="font-size: large;"}
126-
- Uses {d**b**plyr} in the background
127-
- Can still compose SQL
128-
:::::
129-
130-
123+
::: {style="font-size: large;"}
124+
- Uses {d**b**plyr} in the background\
125+
- Can still compose SQL
126+
:::
131127
:::
132128

133129
::: {.column width="50%"}
134-
135130
### SQL
136131

137132
```
@@ -143,9 +138,6 @@ LIMIT 10
143138
:::
144139
:::
145140

146-
147-
148-
149141
## DuckDB vs SQLite
150142

151143
\
@@ -154,15 +146,6 @@ LIMIT 10
154146
- Querying vs light-weight apps
155147
- Analytics oriented v. Simplicity
156148

157-
## Parquet files
158-
159-
- An alternative to CSV files
160-
- Column oriented file [(unlike row-oriented CSV files)]{style="font-size: large; color: gray;"}
161-
- Compression [(column oriented saves storage space and speeds up analytics)]{style="font-size: large; color: gray;"}
162-
- Can handle complex **data types**
163-
- Easy to import into R `arrow::open_dataset("data_parquet")`
164-
- Easy to convert to DuckDB: `arrow::to_duckdb()`
165-
166149
## DuckDB works with
167150

168151
- CSV
@@ -175,9 +158,18 @@ LIMIT 10
175158
## There are duckdb extensions
176159

177160
- support for JSON
178-
- support for Parquet files
161+
- support for parquet files
179162
- spatial extensions
180163

164+
## Parquet files
165+
166+
- An alternative to CSV files
167+
- Column oriented file [(unlike row-oriented CSV files)]{style="font-size: large; color: gray;"}
168+
- Compression [(column oriented saves storage space and speeds up analytics)]{style="font-size: large; color: gray;"}
169+
- Can handle complex **data types**
170+
- Easy to import into R `arrow::open_dataset("data_parquet")`
171+
- Easy to convert to DuckDB: `arrow::to_duckdb()`
172+
181173
# We are here to help
182174

183175
- [askData\@duke.edu](mailto:[email protected])

0 commit comments

Comments
 (0)