Skip to content

Commit

Permalink
Checklist errors
Browse files Browse the repository at this point in the history
  • Loading branch information
EmmaCartuyvels1 committed Aug 22, 2024
1 parent 7e16ec5 commit 7cbda5e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion source/_verkenning.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ venn({{group}}, "month")
### Alpha diversiteit

```{r {{group}}-richness}
{{group}}_richness <- {{group}} %>%
{{group}}_richness <- {{group}} %>% # nolint
group_by(
location_code,
sampling_site_cd,
Expand Down
6 changes: 4 additions & 2 deletions source/data_analysis_spring_2023.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ editor_options:
```{r setup, include=FALSE}
library(knitr)
opts_chunk$set(message = FALSE, warning = FALSE)
opts_knit$set(
root.dir = here::here("source"))
options(scipen = 10)
library(RODBC)
Expand All @@ -42,7 +44,7 @@ conflicted::conflict_prefer("layout", "plotly")

```{r venn-function}
venn <- function(data, group, count_id = "species_nm") {
require(ggplot2)
require(ggplot2) # nolint
groups <- data %>%
distinct(!!sym(group)) %>%
Expand Down Expand Up @@ -802,7 +804,7 @@ flowers <- flowers |>

```{r}
model1 <- glmmTMB(
n_species_ap ~ number_of_floral_units + location_code + maand,
n_ind_ap ~ log(number_of_floral_units + 1) + location_code + maand,
ziformula = ~ 1,
family = "poisson",
na.action = na.exclude,
Expand Down

0 comments on commit 7cbda5e

Please sign in to comment.