Mobility models in general describe interactions between separate locations in space, such as travel among administrative units. There many types of mobility models (gravity and radiation are common model types) and there are many parameterizations of each model type (Barbosa et al. 2018). The ‘mobility’ R package provides methods for fitting and simulating different mobility models including parameterizations of gravity, radiation, and departure-diffusion models. This vignette contains a list of all the mobility models that are currently available in this package.

The models list below can be called by specifying the model and type arguments of the mobility() function. This function performs parameter estimation for the specified model and supplied data matrices. The models are implemented using using Bayesian inference (Gelman et al. 2003) and the Markov Chain Monte Carlo (MCMC) algorithm found in the JAGS (Just Another Gibbs Sampler) library (Plummer 2003, 2019). Each of the models have a likelihood function that assumes a Poisson error structure with mean \(\lambda_{ij}\):

\[ \begin{aligned} m_{ij} &\sim \text{Poisson}(\lambda_{ij})\\ \end{aligned} \]

Where, where \(m_{ij}\) is an element of the data matrix \(M\) and gives the observed number of trips from origin \(i\) to destination \(j\), and the expected mean number of trips \(\lambda_{ij}\) is defined by one of the models below.

Gravity models

The application of Newton’s gravity equation to explain human mobility was first proposed by Zipf (1946) and has become one of the most common types of spatial diffusion models. There are many different parameterizations of the gravity model which are routinely used in the fields of transportation science, economics, ecology, and epidemiology. We have included a number of these different model types in this package. Below are brief descriptions of each gravity model type with example function calls that fit each model to data.

Basic

The basic gravity model is the simplest gravity model with only one estimated parameter, \(\theta\). \[ \begin{aligned} \lambda_{ij} &= \theta \Bigg( \frac{ N_{i} N_{j} }{ d_{ij} } \Bigg) \end{aligned} \]

The parameter \(\theta\) acts as a proportionality constant that scales the product of the origin and destination population sizes (\(N_i\)) and (\(N_j\)) divided by the distance between \(i\) and \(j\) (\(d_{ij}\)). Prior distributions of model parameters are defined as: \[ \begin{aligned} \theta \sim \text{Gamma}(0.001, 0.001) \end{aligned} \] The basic gravity model can be called by:

mod <- mobility(data=mobility_matrices, model='gravity', type='basic')

Transport

A common form of the gravity model used in transportation science has two parameters, \(\theta\) and \(\gamma\). \[ \begin{aligned} \lambda_{ij} &= \theta \Bigg(\frac{ N_{i} N_{j} }{ d_{ij}^{\gamma} }\Bigg) \end{aligned} \] Where, \(\theta\) is a proportionality constant and the exponent \(\gamma\) on \(d_{ij}\) allows adjustment of the distance-based kernel function. Prior distributions of model parameters are defined as: \[ \begin{aligned} \theta &\sim \text{Gamma}(0.001, 0.001)\\ \gamma &\sim \text{Gamma}(1, 1) \end{aligned} \] The transport gravity model can be called by:

mod <- mobility(data=mobility_matrices, model='gravity', type='transport')

Power law

Compared with the basic and transport gravity model types, the power law gravity model adds parameters as exponents on the population sizes of the origin (\(N_i\)) and destination (\(N_j\)). \[ \begin{aligned} \lambda_{ij} &= \theta \Bigg(\frac{ N_{i}^{\omega_1} N_{j}^{\omega_2} }{ d_{ij}^{\gamma} }\Bigg) \end{aligned} \] Where, \(\theta\) is a proportionality constant, the parameters \(\omega_1\) and \(\omega_2\) serve as weights that modify the contribution of origin and destination population sizes. In the denominator, \(d_{ij}^\gamma\), serves as the dispersal kernel function. Prior distributions of model parameters are defined as: \[ \begin{aligned} \theta &\sim \text{Gamma}(0.001, 0.001)\\ \omega_1 &\sim \text{Gamma}(1, 1)\\ \omega_2 &\sim \text{Gamma}(1, 1)\\ \gamma &\sim \text{Gamma}(1, 1) \end{aligned} \] The power law gravity model can be called by:

mod <- mobility(data=mobility_matrices, model='gravity', type='power')

Exponential

Like the power law gravity model, the exponential gravity model has four parameters, however the distance-based kernel function uses exponential decay instead of the power law. \[ \begin{aligned} \lambda_{ij} &= \theta \Bigg(\frac{ N_{i}^{\omega_1} N_{j}^{\omega_2} }{ e^{d_{ij}/\delta} }\Bigg) \end{aligned} \] Where, \(\theta\) is a proportionality constant, the parameters \(\omega_1\) and \(\omega_2\) serve as weights that modify the contribution of origin and destination population sizes. In the denominator, \(e^{d_{ij}/\delta}\), serves as the exponential dispersal kernel function with \(\delta\) giving the deterence distance. Prior distributions of model parameters are defined as: \[ \begin{aligned} \theta &\sim \text{Gamma}(0.001, 0.001)\\ \omega_1 &\sim \text{Gamma}(1, 1)\\ \omega_2 &\sim \text{Gamma}(1, 1)\\ \delta &\sim \text{Truncnorm}(\mu_D, \sigma_D) \end{aligned} \] The \(\text{Truncnorm}(\mu_D, \sigma_D)\) prior is a normal distribution truncated at zero \((0,\infty)\) where \(\mu_D\) and \(\sigma_D\) are the observed mean and standard deviation of the distance matrix \(D\). The exponential gravity model can be called by:

mod <- mobility(data=mobility_matrices, model='gravity', type='exp')

Normalized power law

The normalized gravity model eliminates the exponent on the origin population size (\(N_i\)), requiring estimation of three parameters \(\theta\), \(\omega\), and \(\gamma\). As the name suggests, this model normalizes the connectivity of all routes emanating from origin \(i\). \[ \begin{aligned} \lambda_{ij} &= \theta N_i \Bigg( \frac{ N_j^\omega d_{ij}^{-\gamma} }{ \sum_j N_j^\omega d_{ij}^{-\gamma} } \Bigg) \end{aligned} \] Here, \(\theta\) is a proportionality constant representing the overall number of trips per person taken from the origin population \(N_i\), and the exponential parameter \(\omega\) scales the attractive force of each \(j\) destination population sizes. The kernel function \(d_{ij}^{-\gamma}\) serves as a penalty on the proportion of travel from \(i\) to \(j\) based on distance. Prior distributions of model parameters are defined as: \[ \begin{aligned} \theta &\sim \text{Gamma}(0.001, 0.001)\\ \omega &\sim \text{Gamma}(1, 1)\\ \gamma &\sim \text{Gamma}(1, 1) \end{aligned} \] The normalized power law gravity model can be called by:

mod <- mobility(data=mobility_matrices, model='gravity', type='power_norm')

Normalized exponential

Similar to the model above, the normalized exponential gravity model normalizes the connectivity of all routes emanating from origin \(i\). However, this model uses an exponential dispersal kernal as a penalty on connectivity. \[ \begin{aligned} \lambda_{ij} &= \theta N_i \Bigg( \frac{ N_j^\omega e^{-d_{ij}/\delta} }{ \sum_j N_j^\omega e^{-d_{ij}/\delta} } \Bigg) \end{aligned} \] Where, \(\theta\) is a proportionality constant representing the overall number of trips per person taken from the origin population \(N_i\), and the exponential parameter \(\omega\) scales the attractive force of each \(j\) destination population sizes. The kernel function \(e^{-d_{ij}/\delta}\) serves as the exponential dispersal kernal. Prior distributions of model parameters are defined as: \[ \begin{aligned} \theta &\sim \text{Gamma}(0.001, 0.001)\\ \omega &\sim \text{Gamma}(1, 1)\\ \delta &\sim \text{Truncnorm}(\mu_D, \sigma_D) \end{aligned} \] The \(\text{Truncnorm}(\mu_D, \sigma_D)\) prior is a normal distribution truncated at zero \((0,\infty)\) where \(\mu_D\) and \(\sigma_D\) are the observed mean and standard deviation of the distance matrix \(D\). The normalized exponential gravity model can be called by:

mod <- mobility(data=mobility_matrices, model='gravity', type='exp_norm')

Scaled power law

This gravity model is described in Marshall et al. (2016) and uses a scaled power law and requires estimation of three parameters \(\omega\), \(\rho\), and \(\alpha\). \[ \begin{aligned} \lambda_{ij} &= N_{j}^\omega \Bigg( 1 + \frac{ d_{ij} }{ \rho } \Bigg)^{-\alpha} \end{aligned} \] Where, \(\omega\) adjusts the attractive force of each \(j\) destination population sizes, \(\rho\) scales the distance from \(i\) to \(j\), and \(\alpha\) determines the power law distance kernel. Prior distributions of model parameters are defined as: \[ \begin{aligned} \tau &\sim \text{Gamma}(1, 1)\\ \rho &\sim \text{Gamma}(0.001, 0.001)\\ \alpha &\sim \text{Gamma}(1, 1) \end{aligned} \] This scaled power law gravity model can be called by:

mod <- mobility(data=mobility_matrices, model='gravity', type='scaled_power')

Radiation models

The radiation model was developed as a parameter-free alternative to the parameterized models such the gravity model. As its name suggests the radiation model estimates mobility among locations as the number of travelers or trip counts that radiate from an origin \(i\) and are then absorbed by each destination \(j\). The process by which absorption occurs is based solely on population distribution. Where the number of trips arriving at a destination \(j\) that is distance \(r\) from origin \(i\) is inversley proportional to the total population that resides within a radius of distance \(r\) from the origin \(i\).

Basic

The radiation model was first introduced by Simini et al. (2012) to describe commuting flows in the United States. The model relies on the same data matrices as the gravity models above—mobility matrix \(M\), distance matrix \(D\), and population size vector(s) \(N\)—however, and additional matrix \(S\) is calculated which gives the total population size surrounding the origin. \[ \begin{aligned} \lambda_{ij} = M_i \frac{N_i N_j}{(N_i + s_{ij})(N_i + N_j + s_{ij})} \end{aligned} \] Where, \(M_i\) gives the total number of trips (or travellers) emanating from origin, \(\sum_{j} M_{ij}\), the population sizes of the origin and destination are given by \(N_i\) and \(N_j\). The population surrounding each origin \(s_{ij}\) is calculated as the total population size that resides within the radius \(r_{ij}\), where the origin and destination populations are excluded. The basic radiation model can be called by:

mod <- mobility(data=mobility_matrices, model='radiation', type='basic')

Finite

This version of the radiation model was derived by Masucci et al. (2013) to correct the model’s normalization for systems with finite population sizes. This derivation may not be significantly different compared with the basic model in settings with a large overall population size. However, this model type may be better suited to systems comprised of smaller population sizes that are heterogeneously distributed. Its fomrulation is quite similar to the above with the addition of the normalization of \(M_i\). \[ \begin{aligned} \lambda_{ij} = \frac{M_i}{1-N_i/N_{\text{tot}}} \frac{N_i N_j}{(N_i + s_{ij})(N_i + N_j + s_{ij})} \end{aligned} \] The finite radiation model differs from the basic model by the scaling factor \(\frac{1}{1-N_i/N_{\text{tot}}}\), where \(N_{\text{tot}}\) is the total population size of the system given by \(\sum_i N_i\). As in the basic model, \(M_i\) gives the total number of trips emanating from origin, \(\sum_{j} M_{ij}\), the population sizes of the origin and destination are given by \(N_i\) and \(N_j\). The population surrounding each origin \(s_{ij}\) is calculated as the total population size that resides within the radius \(r_{ij}\), where the origin and destination populations are excluded. The finite radiation model can be called by:

mod <- mobility(data=mobility_matrices, model='radiation', type='finite')

Departure-diffusion models

The departure-diffusion framework models diagonal and off-diagonal elements in the mobility matrix (\(M\)) separately and combines them using conditional probability rules. The model first estimates the probabilty of travel outside the origin location \(i\)—the departure process—and then the distribution of travel from the origin location \(i\) by normalizing connectivity values across all \(j\) destinations—the diffusion process.

These two processes are then combined in the departure-diffusion model as \(\tau_i\) (the probability of leaving origin \(i\)) and \(\pi_{ij}\) (the probability of going from \(i\) to \(j\)). The values of \(\pi_{ij}\) sum to unity along each row, but the diagonal is not included, indicating that this is a relative quantity. That is to say, \(\pi_{ij}\) gives the probability of going from \(i\) to \(j\) given that travel outside origin \(i\) occurs. Therefore, we can use basic conditional probability rules (Blitzstein and Hwang 2014) to define the travel routes in the diagonal elements (trips made within the origin \(i\)) as \[ \Pr( \neg \text{depart}_i ) = 1 - \tau_i \] and the off-diagonal elements (trips made outside origin \(i\)) as \[ \Pr( \text{depart}_i, \text{diffuse}_{i \rightarrow j}) = \Pr( \text{diffuse}_{i \rightarrow j} \mid \text{depart}_i ) \Pr(\text{depart}_i ) = \pi_{ij} \tau_i. \] The expected mean number of trips for route \(i \rightarrow j\) is then: \[ \lambda_{ij} = \begin{cases} \theta N_i (1-\tau_i) \ & \text{if} \ i = j \\ \theta N_i \tau_i \pi_{ij} \ & \text{if} \ i \ne j. \end{cases}\\ \] Where, \(\theta\) is a proportionality constant representing the overall number of trips per person in an origin population of size \(N_i\), \(\tau_i\) is the probability of leaving origin \(i\), and \(\pi_{ij}\) is the probability of travel to destination \(j\) given that travel outside origin \(i\) occurs.

Note that the subscript of \(\tau_i\) indicates that this parameter is estimated for all \(i\) locations. For a more parsimonious model, the hierarchical argument in the mobility() function may be set to FALSE, in which case \(\tau\) is estimated as one parameter representing the general probability that travel occurs outside any origin. The expected mean number of trips for route \(i \rightarrow j\) becomes: \[ \lambda_{ij} = \begin{cases} \theta N_i (1-\tau) \ & \text{if} \ i = j \\ \theta N_i \tau \pi_{ij} \ & \text{if} \ i \ne j. \end{cases}\\ \]

Estimating the departure process

The probability of travel outside origin \(i\) is estimated hierarchically, where origin locations have the departure probability \(\tau_i\) which are driven by data in each location and all unobserved locations regress to the population mean \(\tau_\text{pop}\). \[ \begin{aligned} \tau_i &\sim \text{Beta}(1+\alpha, 1+\beta) \\ \tau_\text{pop} &\sim \text{Beta}(1+\bar{\alpha}, 1+\bar{\beta}) \end{aligned} \] Binomial probabilities for each origin \(\tau_i\) are drawn from a Beta distributed prior with shape and rate parameters \(\alpha\) and \(\beta\). The hierarchical structure comes from estimating \(\alpha\) and \(\beta\) as population-level hyper-priors for the origin-level probabilities \(\tau_i\) and allowing \(\tau_\text{pop}\) to inherit the overall population-level distribution denoted as \(\bar{\alpha}\) and \(\bar{\beta}\). \[ \begin{aligned} \alpha &\sim \text{Gamma}(0.01, 0.01) \\ \beta &\sim \text{Gamma}(0.01, 0.01) \end{aligned} \]

When hierarchical = FALSE the mobility() function estimates a non-hierarchical version of the departure-diffusion model where the parameter \(\tau\) is given a single uninformative prior distribution: \(\tau \sim \text{Beta}(1, 1)\).

Estimating the diffusion process

Because the departure and diffusion processes are modelled separately, any form can be used to model spatial diffusion. In the mobility() function, there are three different model types which can be used to defined the diffusion process \(\pi_{ij}\): the power law gravity, exponential gravity, and radiation models.

Power law gravity

When the power law gravity model is used to defined the diffusion process, the probability of travelling to destination \(j\) given travel outside origin \(i\) (\(\pi_{ij}\)) is defined as: \[ \pi_{ij} = \frac{ N_j^\omega d_{ij}^{-\gamma} }{ \sum\limits_{\forall j \ne i} N_j^\omega d_{ij}^{-\gamma} } \] Where, \(\omega\) scales the attractive force of each \(j\) destination based on its population size \(N_j\). The kernel function \(d_{ij}^{-\gamma}\) serves as a penalty on the proportion of travel from \(i\) to \(j\) based on distance. Prior distributions of diffusion model parameters are defined as: \[ \begin{aligned} \omega &\sim \text{Gamma}(1, 1)\\ \gamma &\sim \text{Gamma}(1, 1) \end{aligned} \] The departure-diffusion model with a power law gravity model as the diffusion process can be called by:

mod <- mobility(data=mobility_matrices, model='departure-diffusion', type='power')

Exponential gravity

When the exponential gravity model is used to defined the diffusion process, the probability of travelling to destination \(j\) given travel outside origin \(i\) (\(\pi_{ij}\)) is defined as: \[ \pi_{ij} = \frac{ N_j^\omega e^{-d_{ij}/\delta} }{ \sum\limits_{\forall j \ne i} N_j^\omega e^{-d_{ij}/\delta} } \] Where, \(\omega\) scales the attractive force of each \(j\) destination based on its population size \(N_j\). The term \(e^{d_{ij}/\delta}\) serves as the exponential dispersal kernel function with \(\delta\) giving the deterence distance. Prior distributions of diffusion model parameters are defined as: \[ \begin{aligned} \omega &\sim \text{Gamma}(1, 1)\\ \delta &\sim \text{Truncnorm}(\mu_D, \sigma_D) \end{aligned} \] The \(\text{Truncnorm}(\mu_D, \sigma_D)\) prior is a normal distribution truncated at zero \((0,\infty)\) where \(\mu_D\) and \(\sigma_D\) are the observed mean and standard deviation of the distance matrix \(D\). The departure-diffusion model with a exponential gravity model as the diffusion process can be called by:

mod <- mobility(data=mobility_matrices, model='departure-diffusion', type='exp')

Radiation

When the radiation model is used to defined the diffusion process, the probability of travelling to destination \(j\) given travel outside origin \(i\) (\(\pi_{ij}\)) is defined as: \[ \pi_{ij} = \frac{ \frac{N_j}{(N_i + s_{ij})(N_i + N_j + s_{ij})} }{ \sum\limits_{\forall j \ne i} \frac{N_j}{(N_i + s_{ij})(N_i + N_j + s_{ij})} } \] Where, the population sizes of the origin and destination are given by \(N_i\) and \(N_j\). The \(s_{ij}\) term is the total population size that resides within distance \(d_{ij}\), excluding the origin and destination populations. The departure-diffusion model with a radiation model as the diffusion process can be called by:

mod <- mobility(data=mobility_matrices, model='departure-diffusion', type='radiation')

References

Barbosa, Hugo, Marc Barthelemy, Gourab Ghoshal, Charlotte R. James, Maxime Lenormand, Thomas Louail, Ronaldo Menezes, José J. Ramasco, Filippo Simini, and Marcello Tomasini. 2018. “Human Mobility: Models and Applications.” Physics Reports, Human mobility: Models and applications, 734 (March): 1–74. https://doi.org/10.1016/j.physrep.2018.01.001.
Blitzstein, Joseph, and Jessica Hwang. 2014. Introduction to Probability, First Edition. Chapman; Hall/CRC.
Gelman, Andrew, John Carlin, Hal Stern, and Donald Rubin. 2003. Bayesian Data Analysis, Second Edition (Chapman & Hall/CRC Texts in Statistical Science). Chapman; Hall/CRC.
Marshall, John M., Mahamoudou Touré, André Lin Ouédraogo, Micky Ndhlovu, Samson S. Kiware, Ashley Rezai, Emmy Nkhama, et al. 2016. “Key Traveller Groups of Relevance to Spatial Malaria Transmission: A Survey of Movement Patterns in Four Sub-Saharan African Countries.” Malaria Journal 15 (1): 200. https://doi.org/10.1186/s12936-016-1252-3.
Masucci, A. Paolo, Joan Serras, Anders Johansson, and Michael Batty. 2013. “Gravity Versus Radiation Models: On the Importance of Scale and Heterogeneity in Commuting Flows.” Physical Review E 88 (2): 022812. https://doi.org/10.1103/PhysRevE.88.022812.
Plummer, Martyn. 2003. “JAGS: A Program for Analysis of Bayesian Graphical Models Using Gibbs Sampling.” https://mcmc-jags.sourceforge.io/.
———. 2019. Rjags: Bayesian Graphical Models Using MCMC. https://CRAN.R-project.org/package=rjags.
Simini, Filippo, Marta C. González, Amos Maritan, and Albert-László Barabási. 2012. “A Universal Model for Mobility and Migration Patterns.” Nature 484 (7392): 96–100. https://doi.org/10.1038/nature10856.
Zipf, George Kingsley. 1946. “The P1 P2/d Hypothesis: On the Intercity Movement of Persons.” American Sociological Review 11 (6): 677–86. https://doi.org/10.2307/2087063.