footeValues | R Documentation |
This function calculates the intermediary values needed for fitting Foote's inverse survivorship analyses, as listed in the table of equations in Foote (2003), with the analyses themselves described further in Foote (2001) and Foote (2005).
footeValues(p, q, r, PA_n = 0, PB_1 = 0, p_cont = TRUE, q_cont = TRUE, Nb = 1)
p |
Instantaneous origination/branching rate of taxa. Under
a continuous model, assumed to be per interval, or equal
to the product of interval lengths and the rates per lineage time
units for each interval.
Under a pulsed mode ( |
q |
Instantaneous extinction rate of taxa. Under
a continuous model, assumed to be per interval, or
equal to the product of interval lengths and the rates per lineage
time units for each interval.
Under a pulsed mode ( |
r |
Instantaneous sampling rate of taxa, assumed to be
per interval, or equal to the product of interval lengths
and the rates per lineage time units for each interval. Given as
a vector with length equal to the number of intervals, so a
different value may be given for each separate interval.
Must be the same length as |
PA_n |
The probability of sampling a taxon after the last interval included in a survivorship study. Usually zero for extinct groups, although more logically has the value of 1 when there are still extant taxa (i.e., if the last interval is the Holocene and the group is still alive, the probability of sampling them later is probably 1...). Should be a value between 0 and 1. |
PB_1 |
The probability of sampling a taxon before the first interval included in a survivorship study. Should be a value between 0 and 1. |
p_cont |
If |
q_cont |
If |
Nb |
The number of taxa that enter an interval (the |
Although most calculations in this function agree
with the errata for Foote's 2003 table (see references), there were some additional
corrections for the probability of D
given FL
(Prob(D|FL)
)
made as part of a personal communication in 2013
between the package author and Michael Foote.
Returns a matrix with number of rows equal to the number of intervals
(i.e. the length of p
, q
and r
)
and named columns representing the different values calculated by the function:
"Nb"
, "Nbt"
, "NbL"
, "NFt"
, "NFL"
, "PD_bt"
,
"PD_bL"
, "PD_Ft"
, "PD_FL"
, "PA"
, "PB"
,
"Xbt"
, "XbL"
, "XFt"
and "XFL"
.
David W. Bapst, with advice from Michael Foote.
Foote, M. 2001. Inferring temporal patterns of preservation, origination, and extinction from taxonomic survivorship analysis. Paleobiology 27(4):602-630.
Foote, M. 2003a. Origination and Extinction through the Phanerozoic: A New Approach. The Journal of Geology 111(2):125-148.
Foote, M. 2003b. Erratum: Origination and Extinction through the Phanerozoic: a New Approach. The Journal of Geology 111(6):752-753.
Foote, M. 2005. Pulsed origination and extinction in the marine realm. Paleobiology 31(1):6-20.
#very simple example with three intervals, same value for all parameters # example rates (for the most part) rate <- rep(0.1, 3) #all continuous footeValues(rate,rate,rate) # origination pulsed footeValues(rate,rate,rate,p_cont = FALSE) # extinction pulsed footeValues(rate,rate,rate,q_cont = FALSE) # all pulsed footeValues(rate,rate,rate,p_cont = FALSE,q_cont = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.