Skip to content

Commit

Permalink
Fix checklist issues
Browse files Browse the repository at this point in the history
  • Loading branch information
EmmaCartuyvels1 committed Nov 4, 2024
1 parent c0a4f27 commit 237204b
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions source/trend_mod.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ abv_ana_birds <- c(
"Boerenzwaluw", "Tjiftjaf", "Zwarte kraai", "Houtduif", "Kleine karekiet",
"Fazant", "Gaai", "Groene specht", "Ekster", "Koolmees", "Gele kwikstaart",
"Groenling", "Holenduif", "Winterkoning", "Scholekster", "Koekoek",
"Heggenmus", "Spreeuw", "Turkse tortel", "Veldleeuwerik", "Geelgors",
"Heggenmus", "Spreeuw", "Turkse tortel", "Veldleeuwerik", "Geelgors",
"Goudhaan", "Kuifmees", "Zilvermeeuw", "Matkop", "Huismus", "Wilde eend",
"Waterhoen", "Zanglijster", "Merel", "Tuinfluiter", "Zwarte mees", "Patrijs",
"Graspieper", "Fitis", "Stadsduif", "Wielewaal", "Grutto", "Kievit",
Expand All @@ -96,27 +96,27 @@ sel_spec <- abv_ana_birds$species
```{r}
data_path <- here::here("data", "raw")
red_list_fl1 <- read_delim(file.path(data_path,
"dwca-rl-flanders-validated-checklist-v1.7",
"distribution.txt"),
delim = "\t",
show_col_types = FALSE)
red_list_fl2 <- read_delim(file.path(data_path,
"dwca-rl-flanders-validated-checklist-v1.7",
"taxon.txt"),
delim = "\t",
show_col_types = FALSE)
red_list_fl1 <- read_delim(
file.path(data_path,
"dwca-rl-flanders-validated-checklist-v1.7",
"distribution.txt"),
delim = "\t",
show_col_types = FALSE)
red_list_fl2 <- read_delim(
file.path(data_path,
"dwca-rl-flanders-validated-checklist-v1.7",
"taxon.txt"),
delim = "\t",
show_col_types = FALSE)
```

```{r}
sel_data <- birdcubeflanders_year |>
group_by(year, species) |>
mutate() |>
filter(species == "Cettia cetti")
gam(n ~ s(year) + s(tot_birds), k = 5)
```

0 comments on commit 237204b

Please sign in to comment.