Description Usage Arguments Value Details References Examples
If lopo
is used to perform a leave-one-prey-out analysis with
a partitioned prey library (make_prey_part
), lopo_pool
pools the partitioned results back to the original unpartitioned prey types.
1 | lopo_pool(est, n_conv, type_ss, pre, post)
|
est |
The estimation matrix of a leave-one-prey-out analysis performed
by the function |
n_conv |
An integer vector denoting the number of signature estimates in
the partitioned prey types that converged, returned by a call to
|
type_ss |
An integer vector with the number of signatures (sample size)
in each of the partitioned prey types, returned by a call to
|
pre |
The pre-multiplication matrix returned by a call to
|
post |
The post-multiplication matrix returned by a call to
|
A list containing the following elements, all of which are organized on the basis of the original unpartitioned prey types:
A square matrix containing the mean distribution of leave-one-prey-out estimates among all prey types.
The mean proportion correctly estimated across prey types, unweighted by prey-type sample sizes.
The proportion of all signatures correctly estimated.
An integer vector containing the number of estimates that converged.
An integer error code (0 if no error is detected).
A string containing a brief summary of the results.
The statistics computed by lopo
and lopo_pool
are one
measure of the distinctiveness of prey types within a prey library. However,
it is important to be aware that such statistics are not necessarily
informative of the ability of QFASA to accurately estimate predator diets, as
Bromaghin et al. (2015, 2016a, 2016b) found that QFASA performance depends
strongly on the interaction between characteristics of a prey library, the
specific diet of a predator, and the accuracy of the calibration
coefficients. Consequently, the user is warned not to misinterpret or
misrepresent these statistics.
Bromaghin, J.F., S.M. Budge, and G.W. Thiemann. 2016b. Should fatty acid signature proportions sum to 1 for diet estimation? Ecological Research 31:597-606.
Bromaghin, J.F., S.M. Budge, G.W. Thiemann, and K.D. Rode. 2016a. Assessing the robustness of quantitative fatty acid signature analysis to assumption violations. Methods in Ecology and Evolution 7:51-59.
Bromaghin, J.F., K.D. Rode, S.M. Budge, and G.W. Thiemann. 2015. Distance measures and optimization spaces in quantitative fatty acid signature analysis. Ecology and Evolution 5:1249-1262.
1 2 3 4 5 6 7 8 9 10 11 | lopo_pool(est = matrix(c(0.90, 0.05, 0.30, 0.02,
0.04, 0.84, 0.09, 0.03,
0.02, 0.06, 0.35, 0.57,
0.05, 0.10, 0.15, 0.70), nrow = 4, byrow = TRUE),
n_conv = c(2, 8, 8, 11),
type_ss = c(2, 8, 8, 12),
pre = matrix(c(0.2, 0.8, 0.0, 0.0,
0.0, 0.0, 0.4, 0.6), nrow = 2, byrow = TRUE),
post = matrix(c(1, 1, 0, 0,
0, 0, 1, 1), ncol = 2)
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.