--- title: "A Gentle Introduction to Modeling with gips" output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{A Gentle Introduction to Modeling with gips} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- ```{r, include = FALSE} knitr::opts_chunk[["set"]]( collapse = TRUE, comment = "#>", cache = FALSE ) old_options <- options(scipen = 999) # turn off scientific notation ``` # The problem Often, we have too little data to perform valid inferences. Consider the situation with multivariate Gaussian distribution, where we have few observations compared to the number of variables. For example, that's the case for graphical models used in biology or medicine. In such a setting, the usual way of finding the covariance matrix (the maximum likelihood method) isn't statistically applicable. What now? # Invariance by permutation Sometimes, the interchange of variables in the vector does not change its distribution. In the multivariate Gaussian case, it means they have the same variances and covariances with other respective variables. For instance, in the following covariance matrix, variables X1 and X3 are interchangeable, meaning that vectors (X1, X2, X3) and (X3, X2, X1) have the same distribution. ```{r symvariant_matrix, echo=FALSE} X <- matrix(c( 1, 2, 3, 2, 4, 2, 3, 2, 1 ), byrow = TRUE, ncol = 3, dimnames = list( c("X1", "X2", "X3"), c("X1", "X2", "X3") )) heatmap(X, Rowv = NA, Colv = NA, main = "", symm = TRUE) ``` Now, we can state this interchangeability property in terms of permutations. In our case, the distribution of (X1, X2, X3) is **invariant by permutation** ($1\mapsto3$, $3\mapsto1$), or in cyclic form $(1,3)(2)$. This is equivalent to saying that swapping the first with the third row and then swapping the first and third columns of the covariance matrix results in the same matrix. Then we say that this covariance matrix is **invariant by permutation**. Of course, in the samples collected in the real world, no perfect equalities will be observed. Still, if the respective values in the (poorly) estimated covariance matrix were close, adopting a particular assumption about invariance by permutation would be a reasonable step. # Package `gips` We propose creating a set of constraints on the covariance matrix to use the maximum likelihood method. The constraint we consider is - none other than - invariance under permutation symmetry. This package provides a way to find a *reasonable* permutation to be used as a constraint in covariance matrix estimation. In this case, *reasonable* means maximizing the Bayesian posterior distribution when using a Wishart-like distribution on symmetric, positive definite matrices as a prior. The idea, exact formulas, and algorithm sketch are explored in another vignette that can be accessed by `vignette("Theory", package="gips")` or on its [pkgdown page](https://przechoj.github.io/gips/articles/Theory.html). For an in-depth analysis of the package performance, capabilities, and comparison with other packages, see the article "Learning permutation symmetries with gips in R" by `gips`' developers Adam Chojecki, Paweł Morgen, and Bartosz Kołodziejek, [Journal of Statistical Software](https://doi.org/10.18637/jss.v112.i07). # Practical example Let's examine thickness, height, and breadth data from 12 books: ```{r change_D_matrix_example0, include=FALSE} plot_cosmetic_modifications <- function(gg_plot_object) { my_col_names <- names(DAAG::oddbooks[, c(1, 2, 3)]) suppressMessages( # message from ggplot2 out <- gg_plot_object + ggplot2::scale_x_continuous( labels = my_col_names, breaks = 1:3 ) + ggplot2::scale_y_reverse( labels = my_col_names, breaks = 1:3 ) + ggplot2::theme( title = ggplot2::element_text(face = "bold", size = 18), axis.text.y = ggplot2::element_text(face = "bold", size = 17), axis.text.x = ggplot2::element_text(face = "bold", size = 17) ) + ggplot2::scale_fill_gradient2( low = "#F0EA3E", mid = "#A41836", high = "#95E956", midpoint = 1.239099 ) ) out + ggplot2::geom_text(ggplot2::aes(label = round(covariance, 1)), fontface = "bold", size = 8 ) + ggplot2::theme(legend.position = "none") } ``` ```{r change_D_matrix_example1} library(gips) Z <- DAAG::oddbooks[, c(1, 2, 3)] ``` We suspect books from this dataset were printed with $\sqrt{2}$ aspect ratio as in popular [A-series paper size](https://en.wikipedia.org/wiki/Paper_size#A_series). Therefore, we can use this expert knowledge in the analysis and unify the data for height and width: ```{r change_D_matrix_example1_1} Z$height <- Z$height / sqrt(2) ``` Now, let's plot the data: ```{r change_D_matrix_example1_2} number_of_observations <- nrow(Z) # 12 p <- ncol(Z) # 3 S <- cov(Z) round(S, 1) g <- gips(S, number_of_observations) plot_cosmetic_modifications(plot(g, type = "heatmap")) + ggplot2::ggtitle("Standard, MLE estimator\nof a covariance matrix") ``` We can see similarities between columns 2 and 3, representing the book’s height and breadth. In particular, the covariance between [1,2] is very similar to [1,3], and the variance of [2] is similar to the variance of [3]. Those are not surprising, given the data interpretation (after the rescaling of height that we did). Let's see what the `gips` will tell about this data: ```{r change_D_matrix_example2} g_map <- find_MAP(g, optimizer = "brute_force", return_probabilities = TRUE, save_all_perms = TRUE ) g_map get_probabilities_from_gips(g_map) ``` `find_MAP()` found the symmetry represented by permutation (2,3). ```{r change_D_matrix_example4} plot_cosmetic_modifications(plot(g_map, type = "heatmap")) round(project_matrix(S, g_map), 1) ``` The result depends on two input parameters, `delta` and `D_matrix`. By default, they are set to `3` and `diag(p) * d`, respectively, where `d = mean(diag(S))`. The method is not scale-invariant, so we recommend running gips for different values of `D_matrix` of the form `D_matrix = d * diag(p)`, where `d` $\in \mathbb{R}^+$). The impact analysis of those can be read in [2] in section *3.2. Hyperparameter’s influence*. # Theoretic example
```{r toy_example_data_show1} library(gips) toy_example_data dim(toy_example_data) number_of_observations <- nrow(toy_example_data) # 4 p <- ncol(toy_example_data) # 5 S <- cov(toy_example_data) sum(eigen(S)$values > 0.00000001) ``` Note that the rank of the `S` matrix is `r sum(eigen(S)$values > 0.00000001)`, despite the `number_of_observations` being `r number_of_observations`. This is because `cov()` estimated the mean on every column to compute `S`. We want to find reasonable additional assumptions on `S` to make it easier to estimate. ```{r toy_example_data_show2} g <- gips(S, number_of_observations) plot(g, type = "heatmap") ``` Looking at the plot, one can see the similarities between columns 3, 4, and 5. They have similar variance and covariance to each other. The 3 and 5 have similar covariance with columns 1 and 2. However, the 4 is also close. Let's see if `gips` will find the relationship: ```{r toy_example_data_show3} g_map <- find_MAP(g, optimizer = "brute_force", return_probabilities = TRUE, save_all_perms = TRUE ) plot(g_map, type = "heatmap") ``` `gips` decided that $(3,4,5)$ was the most reasonable assumption. Let's see how much better it is: ```{r toy_example_data_show4} g_map ``` This assumption is `r round(compare_posteriories_of_perms(g_map, g, print_output = FALSE), 2)` times more believable than making no assumption. Let's examine how reasonable other possible assumptions are: ```{r toy_example_data_show5} toy_probabilities <- get_probabilities_from_gips(g_map) toy_probabilities ``` We see that assumption $(3,4,5)$ is the most likely with a `r round(100 * toy_probabilities[["(3,4,5)"]], 1)`% posterior probability. `r sum(toy_probabilities > toy_probabilities[["()"]])` possible permutations are more likely than id. Remember that the `n0` could still be too big for your data. In this example, the assumptions with transpositions (like $(3,5)$) would yield the `n0` $= 5$, which would be insufficient for us to estimate covariance correctly. The assumption $(3,4,5)$ will be just right: ```{r toy_example_data_show6} summary(g_map)$n0 # compare n0 with number_of_observations S_projected <- project_matrix(S, g_map) S_projected sum(eigen(S_projected)$values > 0.00000001) ``` Now, the estimated covariance matrix is of full rank (`r nrow(S_projected)`). # Multi-sample example Sometimes, we may have several independent groups that should share the same permutation symmetry, while each group has its own covariance matrix. In this case, pass a list of covariance matrices as `S` and a vector of sample sizes as `number_of_observations`. Every matrix must describe the same variables in the same row and column order. `gips` applies a shared permutation to matching matrix indices; it does not match or reorder variables using matrix names. The two covariance matrices below are different, but both are invariant under the permutation $(1,2,3)$: ```{r multi_sample_example_data} p <- 5 n1 <- 20 n2 <- 23 sigma_matrix_1 <- matrix(c( 1.50, 0.95, 0.95, 0.30, -0.05, 0.95, 1.50, 0.95, 0.30, -0.05, 0.95, 0.95, 1.50, 0.30, -0.05, 0.30, 0.30, 0.30, 2.40, 0.05, -0.05, -0.05, -0.05, 0.05, 0.60 ), nrow = p, byrow = TRUE) sigma_matrix_2 <- matrix(c( 2.10, 1.40, 1.40, -0.35, 0.55, 1.40, 2.10, 1.40, -0.35, 0.55, 1.40, 1.40, 2.10, -0.35, 0.55, -0.35, -0.35, -0.35, 0.80, -0.30, 0.55, 0.55, 0.55, -0.30, 2.80 ), nrow = p, byrow = TRUE) data_sample_1 <- withr::with_seed(21, MASS::mvrnorm(n1, mu = rep(0, p), Sigma = sigma_matrix_1) ) data_sample_2 <- withr::with_seed(37, MASS::mvrnorm(n2, mu = rep(0, p), Sigma = sigma_matrix_2) ) S1 <- cov(data_sample_1) S2 <- cov(data_sample_2) variable_names <- c("he", "ha", "hi", "hu", "hy") dimnames(S1) <- list(variable_names, variable_names) dimnames(S2) <- list(variable_names, variable_names) S_by_group <- list("Sample 1" = S1, "Sample 2" = S2) ``` Let us look at the sample covariance matrices: ```{r multi_sample_plot} g_multi <- gips(S_by_group, c(n1, n2)) plot(g_multi, type = "MLE") ``` We see that the estimated covariances are different, but both look approximately invariant under the $(1,2,3)$ permutation. Now we can fit one shared symmetry model to both covariance matrices: ```{r multi_sample_example_fit} g_multi_map <- find_MAP(g_multi, optimizer = "brute_force", return_probabilities = TRUE, save_all_perms = TRUE, show_progress_bar = FALSE ) g_multi_map multi_probabilities <- get_probabilities_from_gips(g_multi_map) head(multi_probabilities, 5) ``` The MAP symmetry is $(1,2,3)$, matching the shared symmetry used to generate both groups. Its posterior probability is about `r round(100 * multi_probabilities[["(1,2,3)"]], 1)`%. The projected covariance estimate is also returned as one matrix per group: ```{r multi_sample_example_project} S_multi_projected <- project_matrix(S_by_group, g_multi_map) round(S_multi_projected[[1]], 2) round(S_multi_projected[[2]], 2) plot(g_multi_map, type = "MLE") ``` If we analyze the two groups separately, the shared symmetry is less clear: ```{r multi_sample_single_group_comparison} g_1_map <- find_MAP(gips(S1, n1), optimizer = "BF", return_probabilities = TRUE, save_all_perms = TRUE, show_progress_bar = FALSE ) g_2_map <- find_MAP(gips(S2, n2), optimizer = "BF", return_probabilities = TRUE, save_all_perms = TRUE, show_progress_bar = FALSE ) group_1_probabilities <- get_probabilities_from_gips(g_1_map) group_2_probabilities <- get_probabilities_from_gips(g_2_map) head(group_1_probabilities, 5) head(group_2_probabilities, 5) ``` The separate analyses are more ambiguous. The true $(1,2,3)$ permutation has posterior probability about `r round(100 * group_1_probabilities[["(1,2,3)"]], 1)`% in the first sample and only about `r round(100 * group_2_probabilities[["(1,2,3)"]], 1)`% in the second sample. The multi-sample fit combines evidence from both groups while requiring one shared permutation symmetry. # Further reading 1. To learn more about the available optimizers in `find_MAP()` and how to use those, see `vignette("Optimizers", package="gips")` or its [pkgdown page](https://przechoj.github.io/gips/articles/Optimizers.html). 2. To learn more about the math and theory behind the `gips` package, see `vignette("Theory", package="gips")` or its [pkgdown page](https://przechoj.github.io/gips/articles/Theory.html). 3. For an in-depth analysis of the package performance, capabilities, and comparison with other packages, see the article "Learning permutation symmetries with gips in R" by `gips` developers Adam Chojecki, Paweł Morgen, and Bartosz Kołodziejek, [Journal of Statistical Software](https://doi.org/10.18637/jss.v112.i07). ```{r options_back, include = FALSE} options(old_options) # back to the original options ```