index.ts: Estimation of the time series of aggregated indices .

Description Usage Arguments Details Value Author(s) References Examples

Description

Estimation of the time series of the aggregated indices of abundance (n/km^2), biomass (kg/km^2) and mean individual weight (kg). The standard deviation and the standard error are also estimated.

Usage

1
2
3
index.ts(merge, GSA = NA, sspp = NA, index = "abundance", depth_range, sex="c",
str.scheme=strata_scheme, surf=stratification_scheme, sampling="RSS",
country=NA, plot=TRUE,verbose=FALSE)

Arguments

merge

data frame containing the merge between table A (TA, hauls data) and table B (TB, catches data) tables.

GSA

integer value corresponding to the GSA number

sspp

string of the species code (MEDITS format). The default value is NA and the species is determined by the merge data frame.

index

string with the selected index wich the time series would be estimated. The permitted values are: "abundance", "biomass", and "MIW".

depth_range

numeric vector of the extreme values of the depth range.

sex

string variable used to define the sex of the specimens to be selected for the analysis. The sex selection is allowed only for the estimation of abundance indices, in the other cases the default value is "c". Allowed values are: "c" for combined sexes, "f" for females and "m" for males.

str.scheme

...

surf

...

sampling

string identifing the type of sampling strategy used in the survey

country

string value indicating the selected country for the analysis in case the analysis should be performed by country

plot

boolean variable to indicate if a plot should be generated.

verbose

bulean parameter, if TRUE returns messages about the progress of the elaboration

Details

Number of positive hauls to the species.
It is assumed that the size of the spreading area of a stock is mainly dependent on its abundance. A trend analysis can provide insight into the evolution of the occupied area in the medium term. This indicator can be also affected by environmental changes. It is computed as: (Positive hauls/Total hauls)*100

Mean biomass index (kg/km2).
This index measures the total biomass of a species per unit area. Changes (decrease) in this indices can be caused by an excessive fishing pressure. The index is calculated as (Souplet, 1996):

where I is the index, Wi is the weight of the stratum i, and xi is given by:

where xi,j is the weight of the individuals in the haul j of the stratum i and Ai,j is the area trawled in the haul j of the stratum i; ni is the number of hauls in the stratum i. Within stratum variance is calculated as:

and the variance in the survey area as:

where fi is the ratio between the area trawled in the stratum i and the stratum area (finite population correction factor, generally negligible).
Mean abundance index (number/km2). Abundance indices, like the biomass ones, can change (decrease) for the effect of an excessive fishing pressure, however more than the biomass ones, are likely to be substantially affected by large recruitment pulses in the stock, particularly if numbers of adults are low. For the analysis of time series of such index the ln transformation of the variable ln(x)+1 is usually applied. For computation see mean biomass index.
Inverse of mean abundance Coefficient of Variation (CV). The reciprocal of the coefficient of variation could be seen as a descriptor of the stability of the variable under investigation (higher is the metrics, more stable is the variable). It is the square root of the variance, as obtained for the biomass index, divided by the mean abundance index.
Mean individual weight (MIW). Mean Individual Weight (MIW) is generally considered an indicator that synthesizes the structure of the population (Piet and Jennings, 2005) and its changes in time are likely linked to changes in fishing pressure, though it can be also influenced by the recruitment peaks. This influence is expected to be less pronounced if older individuals in the population are well represented. Mean weight is particularly useful for those species caught in the trawl surveys for which no data on individual size is collected. It is computed as the ratio between overall biomass by haul i and overall number of individuals by haul i: Bi/Ni

Value

the function returns a data frame with the time series of the selected index:

year

reference years of the estimated indices

abundance

time series of the estimated abundance indices

biomass

time series of the estimated biomass indices

MIW

time series of the estimated mean individual weight (MIW) indices

sd

standard deviation of the estimated indices

se

standard error of the estimated indices

CV

coefficient of variation

invCV

inverse value of the coefficient of variation

positive_hauls_perc

percentage of the hauls positive to the species cought

Author(s)

Walter Zupa

References

Examples

1
2
3
4
library(MEDITS)
merge_TATB <- m.TATB(TA,TB,"ARISFOL")
ind <- index.ts(merge_TATB, index="abundance", depth_range = c(500,800), sex="c",
str.scheme=strata_scheme, surf=stratification_scheme)

MEDITS documentation built on Dec. 23, 2019, 1:06 a.m.