View source: R/italic_ecoregions_distribution.R
italic_ecoregions_distribution | R Documentation |
Returns the distribution and commonness status of lichen taxa across Italian ecoregions. Only accepts names that exist in the database of ITALIC.
italic_ecoregions_distribution(sp_names, result_data = "rarity")
sp_names |
Character vector of accepted names |
result_data |
Character string specifying the output format: "rarity" (default) returns commonness/rarity categories, "presence-absence" returns only values for presence/absence (0/1) |
A data frame with:
The scientific name provided as input
Status in alpine belt (extremely common to absent)
Status in subalpine belt (extremely common to absent)
Status in oromediterranean belt (extremely common to absent)
Status in montane belt (extremely common to absent)
Status in dry submediterranean belt (extremely common to absent)
Status in padanian belt (extremely common to absent)
Status in humid submediterranean belt (extremely common to absent)
Status in humid mediterranean belt (extremely common to absent)
Status in dry mediterranean belt (extremely common to absent)
The possible values of commonness/rarity are: "extremely common", "very common", "common", "rather common", "rather rare", "rare", "very rare", "extremely rare", "absent"
Before using this function with a list of names, first obtain their accepted names
using italic_match()
.
Example workflow:
names_matched <- italic_match(your_names) ecoregions_distribution <- italic_ecoregions_distribution(names_matched$accepted_name)
For more information about Italian ecoregions see ITALIC ecoregions distribution https://italic.units.it/?procedure=base&t=59&c=60#commonness and the scientific publication describing the ecoregions https://www.mdpi.com/1424-2818/12/8/294
## Not run:
# Get commonness/rarity categories
italic_ecoregions_distribution("Cetraria ericetorum Opiz")
# Get presence/absence data
italic_ecoregions_distribution("Cetraria ericetorum Opiz", result_data="presence-absence")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.