You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We would like to know what is the average egg size for each of those bird species. How would we do that?
72
+
:::
70
73
71
74
We will need more information that what we have in our species table. Actually we will need to also retrieve information from the nests and eggs monitoring table.
72
75
@@ -147,7 +150,7 @@ List all the tables present in the database:
147
150
dbListTables(conn)
148
151
```
149
152
150
-
### Let's try to reproduce the analaysis we just did
153
+
Let's have a look at the Species table
151
154
152
155
```{r}
153
156
species_db <- tbl(conn, "Species")
@@ -233,13 +236,13 @@ species_db %>%
233
236
head() %>%
234
237
show_query()
235
238
```
236
-
:::warning
239
+
:::{.callout-caution}
237
240
Limitation: no way to add or update data in the database, `dbplyr` is view only. If you want to add or update data, you'll need to use the `DBI` package functions.
238
241
:::
239
242
240
-
####Average egg volume
243
+
### Average egg volume analysis
241
244
242
-
Calculating the average bird eggs volume per species directly on the database
245
+
Let's reproduce the egg volume analysis we just did. We can calculate the average bird eggs volume per species directly on the database
0 commit comments