knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#",
  fig.path = "tools/"
)

algstat

CRAN status Travis build status AppVeyor build status

algstat is a collection of tools to help you use algebraic statistical methods in R. It is intended to be an end user package for that purpose, and consequently depends on other packages that make connections to math software to do key computations. Currently, the latte package is used to connect R to LattE with 4ti2 for lattice problems and the computation of Markov bases, the m2r package connects R to Macaulay2 for algebraic computations, and the bertini package connects R to Bertini, which is used to numerically solve systems of polynomial equations. These are at varying stages of development. m2r can be used for that purpose to some extent currently by using Macaulay2's connection to PHCPack, so be sure to look there for now if that's what you're trying to do.

If you have something you're wanting implemented here, please file an issue!

Exact inference with log-linear models

Note: this section assumes you have latte installed and working on your machine.

One of the most well-developed parts of the package allows users to perform (conditional) exact tests for log-linear models. There are several great references on the math behind this, such as Diaconis and Sturmfels' original paper, the Lectures on Algebraic Statistics, and Markov Bases in Algebraic Statistics, so we'll keep the technical discussion to a minimum.

Fisher's exact test

We'll begin by doing Fisher's exact test on a built-in dataset called politics.

library("algstat")
data(politics)
politics

Here's how you typically do Fisher's exact test in R:

fisher.test(politics)

Since the independence model is log-linear, this exact same procedure can be done with algstat. The go-to function here is loglinear():

set.seed(1L)
loglinear(~ Personality + Party, data = politics)

Exact inference in algebraic statistics is done using MCMC to sample from the conditional distribution of the data given its sufficient statistics under the model. Consequently, the p-values estimated are only determined up to Monte Carlo error. The standard p-value is given under the column p.value in the row labeled P(samp).

The asymptotic test of independence analogous to Fisher's exact test (which does not condition on the marginals being known) can be done in either of two ways.

The first way uses the loglin() function from the stats package. It outputs the likelihood ratio statistic (Likelihood G^2 in the output above) and Pearson's chi-squared statistic (Pearson X^2 above), but you have to calculate the p-value yourself.

(loglinMod <- stats::loglin(politics, list(1, 2)))
pchisq(loglinMod$pearson, df = 1, lower.tail = FALSE)

The second way is the loglm() function in the MASS package, which is a nice wrapper of loglin() (in fact, algstat's loglinear() function uses the IPF implementation from loglin(), although it doesn't need to). It's syntax looks identical to loglinear()'s above:

MASS::loglm(~ Personality + Party, data = politics)

Fisher's exact test on RxC tables

Doing Fisher's exact test on larger problems is a significantly more complicated problem. The documentation for fisher.test() illustrates how it can be used on RxC tables in general, not just on 2x2 tables. Here's an example from its documentation drawn from Agresti (2002, p.57):

Job <- matrix(
  c(1,2,1,0, 3,3,6,1, 10,10,14,9, 6,7,12,11), nrow = 4, ncol = 4,
  dimnames = list(
    "income" = c("< 15k", "15-25k", "25-40k", "> 40k"),
    "satisfaction" = c("VeryD", "LittleD", "ModerateS", "VeryS")
  )
)

Job

fisher.test(Job)

Here's the algstat counterpart:

loglinear(~ income + satisfaction, data = Job)

The asymptotic test can be performed as well. The chi-square approximation is actually very good here:

MASS::loglm(~ income + satisfaction, data = Job)

Fisher's exact test on multi-way tables

fisher.test() does not work with multi-way tables and is prone to crashing even in large-celled two-way tables (see ?loglinear for an example). Thus, the only way to do exact inference in multi-way tables is to use loglinear(). We'll illustrate this using the drugs dataset from loglinear()'s documentation, taken from Agresti (2002, p.322), on which we'll test the no-three-way interaction model:

data(drugs)
ftable(drugs)

loglinear(subsets(1:3, 2), data = drugs)

Note that here we've used the more concise syntax of facet specification; if you want to understand the model specification better, read the documentation in ?loglinear. You can perform the asymptotic test with loglm() like this:

MASS::loglm(~ 1*2 + 2*3 + 1*3, data = drugs)

Other statistical applications of LattE and 4ti2

Note: this section assumes you have latte installed and working on your machine.

Most LattE programs are available as functions in latte, which is imported by algstat. Checkout the readme for latte here.

There are many statistical applications and potential applications of LattE in R. One example is found in the count program, implemented in latte::latte_count(). latte::latte_count() counts the number of integer points in a convex polytope. This can be useful for counting the number of contingency tables with fixed marginals. algstat uses latte::latte_count() in the count_tables() function, which determines the number of contingency tables in the fiber (isostatistical region) of a table given an exponential family model.

count_tables(politics) # the independence model is the default

For example, we can determine the number of tables with the same row sums of politics as follows:

(A <- hmat(varlvls = c(2, 2), facets = 1:2)[1:2,])
count_tables(politics, A)

Numerically solving systems of polynomial equations

Note: this section assumes you have Bertini installed and algstat has registered it.

algstat also provides back-end connections to Bertini to solve systems of polynomial equations. While this work is still being implemented, here's a peak at what it can currently do.

First, algstat can run raw Bertini programs using bertini(). It also has a nice print method to display the results. For example, here's how you would find the intersection of the line f(x) = x and the unit circle using Bertini:

code <- "
INPUT

variable_group x, y;
function f, g;

f = x^2 + y^2 - 1;
g = y - x;

END;
"
bertini(code)

Even better, algstat can team up with mpoly (working under the hood) to solve systems of polynomial equations using poly_solve():

library("ggplot2"); theme_set(theme_minimal())
ggvariety(mp("(y - x^2) (y - (2 - x^2))"), xlim = c(-2,2), ylim = c(0,2), n = 351)
poly_solve(c("y = x^2", "y = 2 - x^2"), varorder = c("x", "y"))

Variety normal distribution

options("mc.cores" = parallel::detectCores())

p <- mp("(x^2 + y^2 - 1)^3 - x^2 y^3")
(samps <- rvnorm(500, p, .025, "tibble", chains = 8))

ggplot(samps, aes(x, y)) + geom_point(size = .5) + coord_equal()

ggplot(samps, aes(x, y, color = iter)) + 
  geom_point(size = .5) + geom_path(alpha = .3) +
  coord_equal() + facet_wrap(~ factor(chain), nrow = 2)

For semi-algebraic sets:

p <- mp("(x^2 + y^2 - 1)^3 - x^2 y^3 + s^2")
samps <- rvnorm(500, p, .025, "tibble", chains = 8) 
ggplot(samps, aes(x, y)) + geom_point(size = .5) + coord_equal()

After being migrated onto the variety or semi-algebraic set, these can be used as a mesh on that geometry. Here's a cool image made using ggforce's geom_voronoi_segment():

library("ggforce")
ggplot(samps, aes(x, y)) + geom_voronoi_segment() + coord_equal()

Acknowledgements

This material is based upon work supported by the National Science Foundation under Grant Nos. 1622449 and 1622369.

Installation

Installing algstat

There are currently two ways to get algstat. Here's the preferred way until we push a new release to CRAN:

if (!requireNamespace("devtools")) install.packages("devtools")
devtools::install_github("dkahle/mpoly")
devtools::install_github("coneill-math/m2r")
devtools::install_github("dkahle/latte")
devtools::install_github("dkahle/bertini")
devtools::install_github("dkahle/algstat")

Installing supporting software

Coming soon! See the links above for direct information.



dkahle/algstat documentation built on May 23, 2023, 12:29 a.m.