# Get specific coding tables out of the data 'species_codings'
fe_species_get_coding_table("master")
fe_species_get_coding_table("tum_wwk_short")
fe_species_get_coding_table("tum_wwk_long")
fe_species_get_coding_table("bavrn_state")
fe_species_get_coding_table("bavrn_state_short")
fe_species_get_coding_table("ger_nfi_2012")
# Check number of species behind each code in a given coding
fe_species_get_coding_table("tum_wwk_short") |>
dplyr::group_by(species_id) |>
dplyr::summarise(n = dplyr::n()) |>
dplyr::arrange(as.numeric(species_id)) # just for the look of it
fe_species_get_coding_table("bavrn_state_short") |>
dplyr::group_by(species_id) |>
dplyr::summarise(n = dplyr::n()) |>
dplyr::arrange(as.numeric(species_id)) # just for the look of it
Run the code above in your browser using DataLab