Female Willow Ptarmigan captured by Bryce W. Robinson.
Female Willow Ptarmigan captured by Bryce W. Robinson.

1 Introduction

Studying population dynamics is essential for understanding the complex interactions between species and their environment. By modeling population dynamics, researchers can gain an understanding of how animals respond to environmental changes and activities. This understanding is vital for conservation efforts as it aids in identifying endangered species and devising strategies to safeguard biodiversity. Furthermore, animal populations can act as reservoirs for infectious diseases, impacting both human and animal health. By comprehensively understanding population movements, scientists can predict outbreaks, discern transmission patterns, and enhance disease control and prevention measures.

This report extends research by Hjeljord and Loe, who explain the dwindling numbers of willow ptarmigan Lapagos lapagos in Northeastern Scandinavia [1]. Although not in immediate danger, the willow ptarmigan faces threats from habitat loss, climate change, and hunting and trapping. Hjeljord and Loe postulate that, along with climate, a long-term dampening of the amplitude in small rodents and an increase in red fox numbers, have prevented willow ptarmigan populations from reaching their peaks seen a hundred years ago [1]. Their analysis implements linear models with a count proxy as a function of time to estimate linear change and wavelet analysis to detect cyclic periods. This report’s aim is to further Hjelford and Loe’s work by capturing the stochastic population dynamics and the role of alternative prey using the partially observed markov process (POMP) framework. POMP models allow researchers to make inferences about the underlying dynamics of the system by linking observed and unobservable variables. Applications of these models have been carried out extensively in finance and epidemiology, but far less so in ecological systems.

1.2 Data

Our data includes 142 observations from 1872 to 2012. The harvest data (CPUE) was recorded by hunters in the Southeastern mountain regions of Norway. The data is provided by the authors of the study and is hosted by Dryad here. A description of the dataset provided by the authors is given below:

  • year: Self explanatory
  • log.CPUE: Logarithm transformation of CPUE, catch per unit effort, expressed as a number of birds shot per hunter per year.
  • peak_rodent_year: Peak rodent year is scored as “yes”, otherwise “no”. Occurrence of peak rodent years were extracted from four sources: 1871-1949 (Wildhagen 1952), 1932-1971 (Myrberget 1982a), 1971-1979 (Christiansen 1983), 1981-1985 (Frafjord 1988), 1986- 1989 (Selås et al. 2013), and 1990-2013 (Framstad 2017).
(#tab:data_table)Data
year logCPUE R
1872 3.555348 1
1873 2.995732 0
1874 2.995732 0
1875 3.433987 1
1876 3.465736 1
1877 2.708050 0
1878 1.945910 0
1879 2.995732 0
1880 3.401197 1
1881 2.890372 0

2 Data Analysis

2.1 Trend Analysis

2.1.1 Time Plots

Full Data Set.

Figure 2.1: Full Data Set.

2.1.2 Box Plot

Boxplot of logCPUE vs Peak Rodent Year.

Figure 2.2: Boxplot of logCPUE vs Peak Rodent Year.

Looking at both CPUE and log.CPUE in Figure 2.1, it’s evident that ptarmigan populations has steadily decreased over the 142 year-long period. The blue shaded regions in plot C highlight years when peak rodent year is equal to 1 signifying yes. Notice how both plots exhibit peaks in the shaded regions and troughs otherwise, which is exactly what we expected to see from the alternative prey hypothesis. It’s also worth noting that this trend is far less apparent beyond the early 1900s. Figure 2.2 displays side-by-side boxplots of logCPUE vs. peak rodent year, confirming that ptarmigan counts are generally higher in years of rodent abundance. Note: in accordance with the previous study, our analysis will use log.CPUE to reduce heteroscedasticity.

2.2 Correlation

2.2.1 ACF

ACF of logCPUE.

Figure 2.3: ACF of logCPUE.

2.2.2 PACF

ACF of logCPUE.

Figure 2.4: ACF of logCPUE.

Figure 2.3 depicts the ACF plot of log.CPUE at 100 lags. The plot reinforces what we already know - the time series is not stationary, or that future values of the time series are correlated with past values. More specifically, the initial 40 lags show strong correlation with the strongest being the first 5. The PACF plot in Figure 2.1, the partial correlation dies out after 5 lags. For an ARMA model, it may be appropriate to select an \(AR(p=5)\) component.

Given the long-range significance in the ACF plot and obvious non-stationarity, differencing the series may be necessary to fit a simple time series model to the data. Moreover, the ACF appears to be approaching a seasonal behavior, however we cannot apply STL or classical decomposition procedures as our sample of data has less than 2 periods. The repeated short-term cycle in 5 lags could be explained by the partial correlation. That being said, the purpose of this report is to explore the pomp framework, thus we elect to use a very simple ARMA process to serve as a basis for our more sophisticated models.


3 Methods

3.1 ARMA Baseline

We will start off by fitting a simple ARMA model with parameters chosen using the algorithmic approach, grid search. This simple model will serve as a reference against which the performance of the more advanced POMP model is measured. In theory, the ARMA model will serve as a yardstick for managing expectations. Of the models shown in Table 3.1, we select the one with the Akaike’s information criterion (AIC). AIC is essentially minus twice the maximized log likelihood plus twice the number of parameters, and is defined by:

\[AIC=-2\times\ell(\theta^*)+2D\]

ARMA model can’t be performed on the non-stationary time series data. The KPSS test is implemented for a stationarity check.

## Warning in tseries::kpss.test(ts_cpue, null = "Level"): p-value smaller than
## printed p-value
## 
##  KPSS Test for Level Stationarity
## 
## data:  ts_cpue
## KPSS Level = 2.1658, Truncation lag parameter = 4, p-value = 0.01
## Warning in tseries::kpss.test(ts_diff, null = "Level"): p-value greater than
## printed p-value
## 
##  KPSS Test for Level Stationarity
## 
## data:  ts_diff
## KPSS Level = 0.022198, Truncation lag parameter = 4, p-value = 0.1

KPSS with p-value = 0.01 suggests that the average daily hunting of birds(CPUE) in log scale is non-stationary. However, first-order difference on this time series data is stationary, proved by the p-value larger than \(\alpha=0.05\) from KPSS test. Then the following ARMA(p,q) model will be run on such differenced data.

Table 3.1: AIC Table.
MA0 MA1 MA2 MA3 MA4 MA5
AR0 243.32 230.80 223.58 221.22 223.19 204.21
AR1 238.41 216.56 218.55 217.95 219.84 206.21
AR2 226.49 227.49 220.37 219.71 217.91 207.56
AR3 226.66 222.36 221.82 207.03 216.42 208.60
AR4 224.66 222.97 224.86 213.67 208.54 209.68

The best ARMA(0,5) is selected given the lowest AIC with 204.48 to fit first-order differenced data. Thus, ARIMA(0,1,5) will be run below to check for its log-likelihood.

We choose the ARIMA(0,1,5), as out simple benchmark model. The corresponding log-likelihood value comes out to be -99.32.

3.2 Partially Observed Markov Process

Partially observed Markov process models, also known as state-space models, hidden Markov models, and stochastic dynamical system models are probabilistic models used to describe the evolution of a system over time when some of the system’s variables are “hidden” or unobservable [8]. It consists of two main components: a latent process model, representing the unobservable states of the system, and a measurement model, linking the latent states to the observed data [9]. By incorporating both observed and unobserved variables, POMP models allow researchers to make inferences about the underlying dynamics of the system. A simple visual representation of the process is depicted in the image below.

We propose modeling the pomp framework using a variation of the Lotka–Volterra equations [10]. The Lotka-Voltera equations, also referred to as the predator-prey equations, are a pair of first order nonlinear differential equations. They are frequently used to describe the dynamics of biological systems in which two species interact, one as a predator and the other as prey. Our analysis focuses on a slightly different approach that introduces the idea of an alternative prey. The alternative prey hypothesis supposes that predators supported by a primary species will shift to consume alternative prey during a decrease in primary prey abundance. Despite this occurring in many systems, the mechanisms are poorly understood [11], and so we offer an avenue to explore by introducing the pomp framework.

Conditional independence graph of POMP from A. King’s Notes
Conditional independence graph of POMP from A. King’s Notes

The measurement model \(Y(t)\) is our ptarmigan count proxy, logCPUE, \(y(t) =Negative\ Binomial(mean=\rho\beta_t, \sigma)\), and the process model \(X(t)\) includes predator (fox) population density, preferred (rodent) prey population density, and alternative prey (bird) population density. We model how the log of the populations of foxes and ptarmigans change through time in Equations (3.1) and (3.2).

\[\begin{equation} \log F_{t+dt} = \log F_t + dt(bR_t + c\exp(\log B_t)[1 - \gamma R_t] - a)W_t^F \tag{3.1} \end{equation}\]

\[\begin{equation} \log B_{t+dt} = \log B_t + dt(\alpha + \beta \exp(\log F_t)[1 - \gamma R_t])W_t^F \tag{3.2} \end{equation}\]

In equation (3.1):

  • \(\log F_{t+dt}\) is the change in the log of the fox population density over a small time interval \(dt\);
  • \(\log F_t\) is the current log fox population density;
  • \(bR_t\) represents the fox reproduction rate influenced by the rodent population density \(R(t)\);
  • \(a\) represents the fox death rate;
  • \(c\exp(\log B_t)[1−\gamma Rt]\) represents the predation rate of foxes on birds, where \(c\) is a parameter representing the efficiency of fox predation, \(\exp(\log B_t)\) is the bird population density, \(\gamma\) is a parameter representing the impact of rodent population on predation efficiency, and \([1−\gamma R_t]\) accounts for the reduction in predation efficiency when the rodent population is high.
  • \(W_t^F\) is an integrated gamma white noise variable;
  • \(t\) is time.

Similarly, in equation (3.2):

  • \(\log B_{t+dt}\) is the change in the log of the ptarmigan population density over a small time interval \(dt\);
  • \(\log B_t\) is the current log ptarmigan population density;
  • \(\alpha\) and \(\beta\) represent ptarmigan birth rate and the effect of fox predation on ptarmigan population, respectively;
  • \(\exp \log(F_t)\) represents the fox population density influencing bird predation;
  • \(W_t^F\) and \(t\) represent the same interpretations as in Equation (3.1).

4 Conclusion

Our report probes the potential of applying POMP to the field of ecological population dynamics. It ends with ARIMA(0,1,5) produces the highest log-likelihood with -99. We began with the establishment of a foundational ARMA model to serve as a reference point against which we evaluated our proposed POMP models. Drawing inspiration from the Lotka-Voltera equations, we introduce our take on the concept of an alternative prey hypothesis. Although our analysis is on the side of preliminary, it shows this approach can shed more light on the dynamic responses of ecosystems to changes in prey abundance.


References

1.
Hjeljord, O., and Loe, L.E. (2022). The roles of climate and alternative prey in explaining 142 years of declining willow ptarmigan hunting yield. Wildlife Biology.
2.
Pedersen, et al, Åshild Ø. (2018). Impacts of intensified forestry on the demography of willow ptarmigan in norway: Testing predictions from structured population models. Biological Conservation 217, 360–68.
3.
Henden, et al, John-André (2020). Effects of modern agriculture, logging, and recreation on winter abundance of willow ptarmigan in boreal forests. Ecological Applications 30.
4.
Tøttrup, et al, Anders P. (2019). Rising temperatures and lasting snow cover accelerate seasonal timing of reproduction in willow ptarmigan (lagopus lagopus). Oecologia 191, 171–81.
5.
Hebbelstrup Rye, et al, Jonas (2016). Seasonal variation in hunting bag composition of willow ptarmigan lagopus lagopus in southern norway. Wildlife Biology 22, 71–79.
6.
Storaas, et al, Torstein (2017). Decline of a willow ptarmigan (lagopus lagopus) population in central sweden during 1986–2015. Ornis Fennica 94, 1–10.
7.
Breisjøberget JI, el al (2018). The alternative prey hypothesis revisited: Still valid for willow ptarmigan population dynamics. PLoS One 13.
8.
Ionides, E. Chapter 10: Introduction to partially observed markov process models.
9.
King, A.A. Getting started with pomp.
10.
Weisstein, E.W. Lotka-volterra equations.
11.
Brunet, M.J. el al (2023). Spatiotemporal predictions of the alternative prey hypothesis: Predator habitat use during decreasing prey abundance. Ecosphere 14.