Description Usage Arguments Details Value Note Author(s) References See Also Examples
View source: R/BioGeoBEARS_detection_v1.R
This function calculates P(data|range,dp), i.e. the
probability of some detection and taphonomic control
counts, given the true geographic range/state, and
dp
, a detection probability (and, optionally, a
false detection probability, fdp
).
1 2 3 4 | tiplikes_wDetectionModel(states_list_0based_index,
numareas = NULL, detects_df, controls_df,
mean_frequency = 0.1, dp = 1, fdp = 0,
null_range_gets_0_like = TRUE)
|
states_list_0based_index |
A states_list, 0-based,
e.g. from
|
numareas |
The number of areas being considered in
the analysis. If |
detects_df |
A matrix/data.frame of detection
counts, as produced from the output from
|
controls_df |
A matrix/data.frame of detection
counts, as produced from the output from
|
mean_frequency |
This is the proportion of samples from the taphonomic control group that will truly be from this OTU, GIVEN that the OTU is present. This could be estimated, but a decent first guess is (total # samples of OTU of interest / total # of samples in the taphonomic control group where the OTU is known to be present). All that is really needed is some reasonable value, such that more sampling without detection lowers the likelihood of the data on the hypothesis of true presence, and vice versa. This value can only be 1 when the number of detections = the number of taphonomic control detections, for every OTU and area. This is the implicit assumption in e.g. standard historical biogeography analyses in LAGRANGE or BioGeoBEARS. |
dp |
The detection probability. This is the per-sample probability that you will correctly detect the OTU in question, when you are looking at it. Default is 1, which is the implicit assumption in standard analyses. |
fdp |
The false detection probability. This is
probability of falsely concluding a detection of the OTU
of interest occurred, when in fact the specimen was of
something else. The default is 0, which assumes zero
error rate, i.e. the assumption being made in all
historical biogeography analyses that do not take into
account detection probability. These options are being
included for completeness, but it may not be wise to try
to infer |
null_range_gets_0_like |
If |
This function performs the operation for all states/ranges for all tips.
The idea of taphonomic controls dates back at least to work of Bottjer & Jablonski (1988). The basic idea is that if you have taxa of roughly similar detectability, then detections of other taxa give some idea of overall detection effort. Obviously this is a very simple model that can be criticized in any number of ways (different alpha diversity in each region, different detectability of individual taxa, etc.), but it is a useful starting point as there has been no implementation of any detection model in historical/phylogenetic biogeography to date.
One could imagine (a) every OTU and area has a different count of detections and taphonomic control detections, or (b) the taphonomic control detections are specified by area, and shared across all OTUs. Situation (b) is likely more common, but this function assumes (a) as this is the more thorough case. Behavior (b) could be reproduced by summing each column, and/or copying this sum to all cells for a particular area.
tip_condlikes_of_data_on_each_state
The
(non-logged!) likelihood of the data for each tip, given
each possible range, and the detection model parameters.
Go BEARS!
Nicholas J. Matzke matzke@berkeley.edu
http://phylo.wikidot.com/matzke-2013-international-biogeography-society-poster
Matzke_2012_IBS
Bottjer_Jablonski_1988
Pdata_given_rangerow
,
calc_obs_like
, mapply
,
read_detections
,
read_controls
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | testval=1
# soft-coded input files
extdata_dir = np(system.file("extdata", package="BioGeoBEARS"))
detects_fn = np(paste(extdata_dir, "/Psychotria_detections_v1.txt", sep=""))
controls_fn = np(paste(extdata_dir, "/Psychotria_controls_v1.txt", sep=""))
detects_df = read_detections(detects_fn, OTUnames=NULL, areanames=NULL, tmpskip=0)
controls_df = read_controls(controls_fn, OTUnames=NULL, areanames=NULL, tmpskip=0)
# Calculate the likelihood of the data at each tip, for each possible geographic range
numareas = 4
tmpranges = list(c(0), c(1), c(0,1))
mean_frequency=0.1
dp=1
fdp=0
tip_condlikes_of_data_on_each_state =
tiplikes_wDetectionModel(states_list_0based_index=tmpranges, numareas=numareas,
detects_df, controls_df, mean_frequency=mean_frequency, dp=dp, fdp=fdp,
null_range_gets_0_like=TRUE)
tip_condlikes_of_data_on_each_state
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.