Skip to content

Commit

Permalink
coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
wlangera committed Aug 5, 2024
1 parent 1882778 commit dad759c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions source/markdown/verzameling_steekproefkaders_mbag.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,8 @@ bind_rows(
steekproef_mbag_piloot,
steekproef_za_kp_po,
steekproef_weidestreek) %>%
arrange(pointid, regio, openheid_klasse, sbp) %>% count(pointid) %>% filter(n > 1)
count(pointid) %>%
filter(n > 1)
```

Geen dubbels in finale punten.
Expand All @@ -561,7 +562,8 @@ bind_rows(
steekproef_avimap_mbag_piloot,
steekproef_avimap_za_kp_po,
steekproef_avimap_weidestreek) %>%
arrange(pointid, regio, openheid_klasse, sbp) %>% count(pointid) %>% filter(n > 1)
count(pointid) %>%
filter(n > 1)
```

> arrange alles op logische manier
Expand Down

0 comments on commit dad759c

Please sign in to comment.