List of wildlife species at risk designated under the Quebec Act respecting threatened or vulnerable species by the Quebec Natural Heritage Data Centre (Centre de données sur le patrimoine naturel du Québec) [CDPNQ; @cdpnq2021].
meta <- read_yaml("../data/data-metadata/int_cv_habitat.yml") tab <- as.data.frame(meta$dataDescription$CDPNQ$Faune) %>% mutate(Scientific = glue("*{Scientific}*")) %>% arrange(Statut, Common) tab$Statut <- gsub("Vulnérable","Vulnerable",tab$Statut) tab$Statut <- gsub("Menacée","Threatened",tab$Statut) tab %>% knitr::kable( col.names = c("Status", "Scientific name", "Common name (french)"), row.names = FALSE )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.