This vignette illustrates the standard use of the PLNnetwork
function and the methods accompanying the R6 Classes PLNnetworkfamily
and PLNnetworkfit
.
The packages required for the analysis are PLNmodels plus some others for data manipulation and representation:
library(PLNmodels)
library(ggplot2)
We illustrate our point with the trichoptera data set, a full description of which can be found in the corresponding vignette. Data preparation is also detailed in the specific vignette.
data(trichoptera)
<- prepare_data(trichoptera$Abundance, trichoptera$Covariate) trichoptera
The trichoptera
data frame stores a matrix of counts (trichoptera$Abundance
), a matrix of offsets (trichoptera$Offset
) and some vectors of covariates (trichoptera$Wind
, trichoptera$Temperature
, etc.)
The network model for multivariate count data that we introduce in Chiquet, Robin, and Mariadassou (2019) is a variant of the Poisson Lognormal model of Aitchison and Ho (1989), see the PLN vignette as a reminder. Compare to the standard PLN model we add a sparsity constraint on the inverse covariance matrix \({\boldsymbol\Sigma}^{-1}\triangleq \boldsymbol\Omega\) by means of the \(\ell_1\)-norm, such that \(\|\boldsymbol\Omega\|_1 < c\). PLN-network is the equivalent of the sparse multivariate Gaussian model (Banerjee, Ghaoui, and d’Aspremont 2008) in the PLN framework. It relates some \(p\)-dimensional observation vectors \(\mathbf{Y}_i\) to some \(p\)-dimensional vectors of Gaussian latent variables \(\mathbf{Z}_i\) as follows \[\begin{equation} \begin{array}{rcl} \text{latent space } & \mathbf{Z}_i \sim \mathcal{N}\left({\boldsymbol\mu},\boldsymbol\Omega^{-1}\right) & \|\boldsymbol\Omega\|_1 < c \\ \text{observation space } & Y_{ij} | Z_{ij} \quad \text{indep.} & Y_{ij} | Z_{ij} \sim \mathcal{P}\left(\exp\{Z_{ij}\}\right) \end{array} \end{equation}\]
The parameter \({\boldsymbol\mu}\) corresponds to the main effects and the latent covariance matrix \(\boldsymbol\Sigma\) describes the underlying structure of dependence between the \(p\) variables.
The \(\ell_1\)-penalty on \(\boldsymbol\Omega\) induces sparsity and selection of important direct relationships between entities. Hence, the support of \(\boldsymbol\Omega\) correspond to a network of underlying interactions. The sparsity level (\(c\) in the above mathematical model), which corresponds to the number of edges in the network, is controlled by a penalty parameter in the optimization process sometimes referred to as \(\lambda\). All mathematical details can be found in Chiquet, Robin, and Mariadassou (2019).
Just like PLN, PLN-network generalizes to a formulation close to a multivariate generalized linear model where the main effect is due to a linear combination of \(d\) covariates \(\mathbf{x}_i\) and to a vector \(\mathbf{o}_i\) of \(p\) offsets in sample \(i\). The latent layer then reads \[\begin{equation} \mathbf{Z}_i \sim \mathcal{N}\left({\mathbf{o}_i + \mathbf{x}_i^\top\boldsymbol\Theta},\boldsymbol\Omega^{-1}\right), \qquad \|\boldsymbol\Omega\|_1 < c , \end{equation}\] where \(\boldsymbol\Theta\) is a \(d\times p\) matrix of regression parameters.
Regularization via sparsification of \(\boldsymbol\Omega\) and visualization of the consecutive network is the main objective in PLN-network. To reach this goal, we need to first estimate the model parameters. Inference in PLN-network focuses on the regression parameters \(\boldsymbol\Theta\) and the inverse covariance \(\boldsymbol\Omega\). Technically speaking, we adopt a variational strategy to approximate the \(\ell_1\)-penalized log-likelihood function and optimize the consecutive sparse variational surrogate with an optimization scheme that alternates between two step
More technical details can be found in Chiquet, Robin, and Mariadassou (2019)
In the package, the sparse PLN-network model is adjusted with the function PLNnetwork
, which we review in this section. This function adjusts the model for a series of value of the penalty parameter controlling the number of edges in the network. It then provides a collection of objects with class PLNnetworkfit
, corresponding to networks with different levels of density, all stored in an object with class PLNnetworkfamily
.
PLNnetwork
finds an hopefully appropriate set of penalties on its own. This set can be controlled by the user, but use it with care and check details in ?PLNnetwork
. The collection of models is fitted as follows:
<- PLNnetwork(Abundance ~ 1 + offset(log(Offset)), data = trichoptera) network_models
##
## Initialization...
## Adjusting 30 PLN with sparse inverse covariance estimation
## Joint optimization alternating gradient descent and graphical-lasso
## sparsifying penalty = 3.641811
sparsifying penalty = 3.363835
sparsifying penalty = 3.107076
sparsifying penalty = 2.869916
sparsifying penalty = 2.650857
sparsifying penalty = 2.44852
sparsifying penalty = 2.261626
sparsifying penalty = 2.088998
sparsifying penalty = 1.929547
sparsifying penalty = 1.782266
sparsifying penalty = 1.646227
sparsifying penalty = 1.520572
sparsifying penalty = 1.404508
sparsifying penalty = 1.297303
sparsifying penalty = 1.198281
sparsifying penalty = 1.106818
sparsifying penalty = 1.022335
sparsifying penalty = 0.9443011
sparsifying penalty = 0.8722234
sparsifying penalty = 0.8056474
sparsifying penalty = 0.744153
sparsifying penalty = 0.6873524
sparsifying penalty = 0.6348874
sparsifying penalty = 0.586427
sparsifying penalty = 0.5416655
sparsifying penalty = 0.5003207
sparsifying penalty = 0.4621316
sparsifying penalty = 0.4268575
sparsifying penalty = 0.3942758
sparsifying penalty = 0.3641811
## Post-treatments
## DONE!
Note the use of the formula
object to specify the model, similar to the one used in the function PLN
.
PLNnetworkfamily
The network_models
variable is an R6
object with class PLNnetworkfamily
, which comes with a couple of methods. The most basic is the show/print
method, which sends a very basic summary of the estimation process:
network_models
## --------------------------------------------------------
## COLLECTION OF 30 POISSON LOGNORMAL MODELS
## --------------------------------------------------------
## Task: Network Inference
## ========================================================
## - 30 penalties considered: from 0.3641811 to 3.641811
## - Best model (greater BIC): lambda = 1.4
## - Best model (greater EBIC): lambda = 1.4
One can also easily access the successive values of the criteria in the collection
$criteria %>% head() %>% knitr::kable() network_models
param | nb_param | loglik | BIC | ICL | n_edges | EBIC | pen_loglik | density | stability |
---|---|---|---|---|---|---|---|---|---|
3.641811 | 17 | -1294.091 | -1327.172 | -2800.921 | 0 | -1327.172 | -1300.317 | 0.0000000 | NA |
3.363835 | 17 | -1288.442 | -1321.522 | -2795.193 | 0 | -1321.522 | -1294.398 | 0.0000000 | NA |
3.107076 | 17 | -1283.314 | -1316.395 | -2790.066 | 0 | -1316.395 | -1289.017 | 0.0000000 | NA |
2.869916 | 18 | -1278.312 | -1313.338 | -2787.009 | 1 | -1315.795 | -1283.775 | 0.0069204 | NA |
2.650857 | 18 | -1273.579 | -1308.606 | -2782.277 | 1 | -1311.062 | -1278.811 | 0.0069204 | NA |
2.448520 | 18 | -1269.148 | -1304.174 | -2777.845 | 1 | -1306.631 | -1274.155 | 0.0069204 | NA |
A diagnostic of the optimization process is available via the convergence
field:
$convergence %>% head() %>% knitr::kable() network_models
param | nb_param | objective | convergence | outer_iterations | inner_iterations | inner_status | inner_message | |
---|---|---|---|---|---|---|---|---|
out | 3.641811 | 17 | 1300.316677 | 0.000043 | 20.000000 | 116 | 4 | xtol_rel or xtol_abs was reached |
elt | 3.363835 | 17 | 1294.397557 | 0.000007 | 2.000000 | 24 | 4 | xtol_rel or xtol_abs was reached |
elt.1 | 3.107076 | 17 | 1289.016742 | 0.000000 | 2.000000 | 19 | 4 | xtol_rel or xtol_abs was reached |
elt.2 | 2.869916 | 18 | 1283.775469 | 0.000000 | 2.000000 | 18 | 4 | xtol_rel or xtol_abs was reached |
elt.3 | 2.650857 | 18 | 1278.811377 | 0.000000 | 2.000000 | 18 | 4 | xtol_rel or xtol_abs was reached |
elt.4 | 2.448520 | 18 | 1274.154504 | 0.000000 | 2.000000 | 18 | 4 | xtol_rel or xtol_abs was reached |
An nicer view of this output comes with the option “diagnostic” in the plot
method:
plot(network_models, "diagnostic")
By default, the plot
method of PLNnetworkfamily
displays evolution of the criteria mentioned above, and is a good starting point for model selection:
plot(network_models)
Note that we use the original definition of the BIC/ICL criterion (\(\texttt{loglik} - \frac{1}{2}\texttt{pen}\)), which is on the same scale as the log-likelihood. A popular alternative consists in using \(-2\texttt{loglik} + \texttt{pen}\) instead. You can do so by specifying reverse = TRUE
:
plot(network_models, reverse = TRUE)
In this case, the variational lower bound of the log-likelihood is hopefully strictly increasing (or rather decreasing if using reverse = TRUE
) with a lower level of penalty (meaning more edges in the network). The same holds true for the penalized counterpart of the variational surrogate. Generally, smoothness of these criteria is a good sanity check of optimization process. BIC and its extended-version high-dimensional version EBIC are classically used for selecting the correct amount of penalization with sparse estimator like the one used by PLN-network. However, we will consider later a more robust albeit more computationally intensive strategy to chose the appropriate number of edges in the network.
To pursue the analysis, we can represent the coefficient path (i.e., value of the edges in the network according to the penalty level) to see if some edges clearly come off. An alternative and more intuitive view consists in plotting the values of the partial correlations along the path, which can be obtained with the options corr = TRUE
. To this end, we provide the S3 function coefficient_path
:
coefficient_path(network_models, corr = TRUE) %>%
ggplot(aes(x = Penalty, y = Coeff, group = Edge, colour = Edge)) +
geom_line(show.legend = FALSE) + coord_trans(x="log10") + theme_bw()
To select a network with a specific level of penalty, one uses the getModel(lambda)
S3 method. We can also extract the best model according to the BIC or EBIC with the method getBestModel()
.
<- getModel(network_models, network_models$penalties[20]) # give some sparsity
model_pen <- getBestModel(network_models, "BIC") # if no criteria is specified, the best BIC is used model_BIC
An alternative strategy is to use StARS (Liu, Roeder, and Wasserman 2010), which performs resampling to evaluate the robustness of the network along the path of solutions in a similar fashion as the stability selection approach of Meinshausen and Bühlmann (2010), but in a network inference context.
Resampling can be computationally demanding but is easily parallelized: the function stability_selection
integrates some features of the future package to perform parallel computing. We set our plan to speed the process by relying on 2 workers:
library(future)
plan(multisession, workers = 2)
Requesting ‘StARS’ in gestBestmodel
invokes stability_selection
, if it has not yet been run:
<- getBestModel(network_models, "StARS") model_StARS
##
## Stability Selection for PLNnetwork:
## subsampling: ++++++++++++++++++++
When “StARS” is requested for the first time, getBestModel
automatically calls the method stability_selection
with the default parameters. After the first call, the stability path is available from the plot
function:
plot(network_models, "stability")
PLNnetworkfit
The variables model_BIC
, model_StARS
and model_pen
are other R6Class
objects with class PLNnetworkfit
. They all inherits from the class PLNfit
and thus own all its methods, with a couple of specific one, mostly for network visualization purposes. Most fields and methods are recalled when such an object is printed:
model_StARS
## Poisson Lognormal with sparse inverse covariance (penalty = 1.52)
## ==================================================================
## nb_param loglik BIC ICL n_edges EBIC pen_loglik density
## 20 -1247.828 -1286.746 -2760.417 3 -1292.467 -1251.619 0.021
## ==================================================================
## * Useful fields
## $model_par, $latent, $latent_pos, $var_par, $optim_par
## $loglik, $BIC, $ICL, $loglik_vec, $nb_param, $criteria
## * Useful S3 methods
## print(), coef(), sigma(), vcov(), fitted(), predict(), standard_error()
## * Additional fields for sparse network
## $EBIC, $density, $penalty
## * Additional S3 methods for network
## plot.PLNnetworkfit()
The plot
method provides a quick representation of the inferred network, with various options (either as a matrix, a graph, and always send back the plotted object invisibly if users needs to perform additional analyses).
<- plot(model_StARS, plot = FALSE)
my_graph my_graph
## IGRAPH 701069f UNW- 17 3 --
## + attr: name (v/c), label (v/c), label.cex (v/n), size (v/n),
## | label.color (v/c), frame.color (v/l), weight (e/n), color (e/c),
## | width (e/n)
## + edges from 701069f (vertex names):
## [1] Che--Hve Glo--Hfo Hfo--Hsp
plot(model_StARS)
plot(model_StARS, type = "support", output = "corrplot")
We can finally check that the fitted value of the counts – even with sparse regularization of the covariance matrix – are close to the observed ones:
data.frame(
fitted = as.vector(fitted(model_StARS)),
observed = as.vector(trichoptera$Abundance)
%>%
) ggplot(aes(x = observed, y = fitted)) +
geom_point(size = .5, alpha =.25 ) +
scale_x_log10(limits = c(1,1000)) +
scale_y_log10(limits = c(1,1000)) +
theme_bw() + annotation_logticks()
fitted value vs. observation