cassandRa Vignette

Chris Terry

2019-07-02

Introduction

This package provides tools to determine the probably effect of undersampling in bipartite ecological networks and tools to determine likely gaps in ecological data following the approaches discussed in Finding missing links in interaction networks by Terry & Lewis (in prep).

While this cannot replace further sampling, by making it as easy as possible to assess the most likely missing links, we hope we can encourage further consideration of the quality of ecological networks.

We provide two ‘high level functions’ that are designed to work as easily as possible out of the box: PredictLinks() and RarefyNetwork(). Both functions are designed to ‘play nicely’ with the bipartite package (Dormann et al., 2008). They both come with accompanying plotting functions that return ggplot objects displaying the key information.

Source code is hosted on github at https://github.com/jcdterry/cassandRa/. Any issues, comments or suggestions are probably best routed through there. If you make use of the link prediction aspect of the package, please cite the paper (either the preprint, or the paper if/when it comes out. Otherwise, if you use resampling, then please just cite the package.

Data format requirements

Both functions assume that you have a quantitative ecological network matrix in the format ready to go with the widely used bipartite package. It should be in bipartite form, i.e. a potentially rectangular matrix of side lengths NxM rather than SxS. There should not be any additional columns with totals or other summaries.

The package bipartite provides some useful tools to help with this such as frame2webs().

Data in this format has rows being each of the focal layer (referred to as ‘Host’ in the underlying function documentation) and columns detailing the response layer (referred to as ‘Wasp’ in the underlying documentation). The distinction is that the focal layer is the layer where you have control over the sampling - for example which plants were watched, which hosts were gathered for parasite-rearing etc.

If present, row names and column names are retained for use. Species that are not observed interacting with any others are removed.

For this vignette, we will use one of the datasets bundled with the bipartite package:

data(Safariland, package= 'bipartite')

Safariland[1:5, 1:2]
#>                       Policana albopilosa Bombus dahlbomii
#> Aristotelia chilensis                 673                0
#> Alstroemeria aurea                      0              154
#> Schinus patagonicus                     0                0
#> Berberis darwinii                       0               67
#> Rosa eglanteria                         0                0

RarefyNetwork() - Metric Responses to Resampling

The purpose of this function is to provide an easy way to get some information on the confidence with which network metrics can be assigned, given a particular level of sampling. It does this by redrawing observations with probabilities proportional to the relative interaction frequency, and assessing the spread of the network metrics. Before starting, I would recommend also looking at capacity built into bipartite, specifically bipartite::nullmodel and the discussion in the Intro2bipartite vignette. These functions include other ways of generating null models that may be more relevant.

This has three main purposes: to (visually) assess whether a metric has stabilised with the level of sampling, to assess (via bootstrapped confidence intervals) the precision with which that metric can be reported, and to allow the rarefaction of different networks to a matched sample size to allow a more equitable comparison of metrics that are known to be correlated with sample size.

The function calls networklevel() from the bipartite package, which offers the vast majority of bipartite network metrics used by ecologists. Note that if the re-sampling procedure means that certain species are no longer present in the network, then they will be dropped by the function by default. This could lead to some problems for some metrics such as overall connectance since the number of possible interactions will decrease with a smaller web size. This can be overcome by passing empty.web=FALSE to the ... argument.

A basic way used to calculate confidence intervals is to sort the metric values from the re-sampled networks and find the value at the 5th and 95th percentile. These values must still be treated with some caution as the re-sampling procedure will not generate unobserved interaction. Nonetheless it can give an indication of the extent to which the sampling is sufficient to make a particular conclusion. Any NA values are excluded. These are only likely to occur for certain quantitative metrics that may fail for small networks (e.g. weighted nestedness can do this). By excluding NA’s a value can still be returned, by since these NA’s are non-random they may skew the results. The underlying networklevel() function should warn which metric and for what size this may be an issue.

Function Arguments

Beware that each metric will be called potentially many 1000s of times, so don’t be too greedy! The degree distribution fit metrics will not work as they cannot be coerced easily into a vector. ?networklevel() discusses time considerations.

and then ONE of:

Then there are two optional arguments if you want to take advantage of parallel computation. If PARALLEL=TRUE, it will use the parallel package to split the network calculations over the number of cores set by cores.

By default it will return a data frame of the raw recalculated metrics, with a separate column for each metric, and the last column specifying the resample size.

This data frame can then be passed to ComputeCI() to return basic confidence intervals (in a data frame containing 5 columns: Metric, LowerCI, UpperCI, Mean & SampleSize), or to PlotRarefaction() to make a simple ggplot. Both these functions have no additional arguments and are pretty basic. The look of the ggplots can be modified as normal.

If you want to skip this step, it is possible to pass an output argument direct to RarefyNetwork(). If 'plot' will return a ggplot object using PlotRarefaction(), and if output='CI' it will return a data frame using ComputeCI().

Session Information