Count number of taxon records overlapping a specific time interval.
divdistr_int(x, table = NULL, ids = FALSE, max = table$max, min = table$min)
x
: A numeric vector of length 2 specifying the start and end (in ma) of the time interval in question.table
: Taxon-range table to useids
: Logical whether to return ids of entries in taxon-range table (defaults to FALSE) or their numbermax
: Vector or column containing the maximum age of each entry in the taxon-range table. Defaults to table$maxmin
: Vector or column containing the minimum age of each entry in the taxon-range table. Defaults to table$minA single numeric giving the number of entries in table overlapping the specified interval, or a numeric vector giving their indices.
data(archosauria) divdistr_int(x=c(201,220), table=archosauria$sptab_Coelophysoidea)
Useful links