Skip to content

Commit

Permalink
Update axis labels
Browse files Browse the repository at this point in the history
  • Loading branch information
EmmaCartuyvels1 committed May 16, 2024
1 parent bb6f38f commit 0b22865
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/_verkenning.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ In totaal werden `r tot_n_species` soorten `{{group}}` gevonden.
count(location_code, month, method_combi) |>
ggplot(aes(x = method_combi, y = n, fill = method_combi)) +
geom_bar(stat = "identity", position = position_dodge()) +
facet_grid(location_code ~ month) +
facet_grid(location_code ~ paste("maand:", month)) +
theme(axis.title.x=element_blank(),

Check warning on line 38 in source/_verkenning.Rmd

View workflow job for this annotation

GitHub Actions / check project with checklist

file=source/_verkenning.Rmd,line=38,col=21,[infix_spaces_linter] Put spaces around all infix operators.
axis.text.x=element_blank(),

Check warning on line 39 in source/_verkenning.Rmd

View workflow job for this annotation

GitHub Actions / check project with checklist

file=source/_verkenning.Rmd,line=39,col=20,[infix_spaces_linter] Put spaces around all infix operators.
axis.ticks.x=element_blank())

Check warning on line 40 in source/_verkenning.Rmd

View workflow job for this annotation

GitHub Actions / check project with checklist

file=source/_verkenning.Rmd,line=40,col=21,[infix_spaces_linter] Put spaces around all infix operators.
Expand Down Expand Up @@ -389,7 +389,7 @@ rarefaction_result_3 %>%
cumulative_n_species = map_dbl(accumulated_species_list, length),
extra_n_species = cumulative_n_species - dplyr::lag(cumulative_n_species),
pt_ts = str_sub(sampling_site_cd, 12, 13),
month = as.numeric(month)
month = as.numeric(as.character(month))
) %>%
ungroup()
```
Expand Down

0 comments on commit 0b22865

Please sign in to comment.