Package: tlrmvnmvt 1.1.2

Jian Cao

tlrmvnmvt: Low-Rank Methods for MVN and MVT Probabilities

Implementation of the classic Genz algorithm and a novel tile-low-rank algorithm for computing relatively high-dimensional multivariate normal (MVN) and Student-t (MVT) probabilities. References used for this package: Foley, James, Andries van Dam, Steven Feiner, and John Hughes. "Computer Graphics: Principle and Practice". Addison-Wesley Publishing Company. Reading, Massachusetts (1987, ISBN:0-201-84840-6 1); Genz, A., "Numerical computation of multivariate normal probabilities," Journal of Computational and Graphical Statistics, 1, 141-149 (1992) <doi:10.1080/10618600.1992.10477010>; Cao, J., Genton, M. G., Keyes, D. E., & Turkiyyah, G. M. "Exploiting Low Rank Covariance Structures for Computing High-Dimensional Normal and Student- t Probabilities," Statistics and Computing, 31.1, 1-16 (2021) <doi:10.1007/s11222-020-09978-y>; Cao, J., Genton, M. G., Keyes, D. E., & Turkiyyah, G. M. "tlrmvnmvt: Computing High-Dimensional Multivariate Normal and Student-t Probabilities with Low-Rank Methods in R," Journal of Statistical Software, 101.4, 1-25 (2022) <doi:10.18637/jss.v101.i04>.

Authors:Marc Genton [aut], David Keyes [aut], George Turkiyyah [aut], Jian Cao [aut, cre]

tlrmvnmvt_1.1.2.tar.gz
tlrmvnmvt_1.1.2.tar.gz(r-4.5-noble)tlrmvnmvt_1.1.2.tar.gz(r-4.4-noble)
tlrmvnmvt_1.1.2.tgz(r-4.4-emscripten)tlrmvnmvt_1.1.2.tgz(r-4.3-emscripten)
tlrmvnmvt.pdf |tlrmvnmvt.html
tlrmvnmvt/json (API)
NEWS

# Install 'tlrmvnmvt' in R:
install.packages('tlrmvnmvt', repos = 'https://cloud.r-project.org')
Uses libs:
  • openblas– Optimized BLAS
  • c++– GNU Standard C++ Library v3

On CRAN:

Conda:

This package does not link to any Github/Gitlab/R-forge repository. No issue tracker or development information is available.

fortranopenblascpp

3.13 score 1 stars 9 packages 435 downloads 5 exports 3 dependencies

Last updated 3 years agofrom:8fc44ebd63. Checks:1 OK, 2 NOTE. Indexed: yes.

TargetResultLatest binary
Doc / VignettesOKMar 04 2025
R-4.5-linux-x86_64NOTEMar 04 2025
R-4.4-linux-x86_64NOTEMar 04 2025

Exports:GenzBretzpmvnpmvtTLRQMCzorder

Dependencies:BHRcppRcppEigen

Citation

To cite tlrmvnmvt in publications use:

Cao J, Genton MG, Keyes DE, Turkiyyah GM (2022). “tlrmvnmvt: Computing High-Dimensional Multivariate Normal and Student-$t$ Probabilities with Low-Rank Methods in R.” Journal of Statistical Software, 101(4), 1–25. doi:10.18637/jss.v101.i04.

Corresponding BibTeX entry:

  @Article{,
    title = {{tlrmvnmvt}: Computing High-Dimensional Multivariate
      Normal and {S}tudent-$t$ Probabilities with Low-Rank Methods in
      {R}},
    author = {Jian Cao and Marc G. Genton and David E. Keyes and George
      M. Turkiyyah},
    journal = {Journal of Statistical Software},
    year = {2022},
    volume = {101},
    number = {4},
    pages = {1--25},
    doi = {10.18637/jss.v101.i04},
  }

Readme and manuals

About the package

This package offers functionalities for computing multivariate normal and Student-t probabilities. The meanings of this package:

  1. Faster implementation of the classic Genz algorithm (compared with pmvnorm and pmvt functions)
  2. Able to return the results in the log2 form, which is useful when the true probability is smaller than machine precision
  3. Accepts both a matrix and a geometry for building the covariance matrix
  4. Implement the tile-low-rank method with block reordering, which can compute problems in tens of thousands dimensions
  5. Provide the interface for users to adjust the number of Monte Carlo sample size to make a balance between accuracy and computation time specific to their applications.

Speed improvement

For better performance, the package should be compiled with a proper optimization flag. To achieve this, you can do either of the following in the Makevars file under ~/.R directory:

  1. Set CXX14FLAGS to empty, CXX14FLAGS=, which will leave the configure file to find the optimization option based on the CXX14 compiler your R uses.
  2. Set the CXX14 compiler and flags by yourself, e.g. CXX14 = g++ CXX14FLAGS = -O3

The goal here is to override the default compiler options used by R. The default options are fine, just not the fastest.

On Mac OS

After some installations on Mac OS, two issues may happen:

  1. The binary gfortran compiler is not available
  2. The gfortran library is not available

The explanation can be sought from: https://cran.r-project.org/bin/macosx/tools/

And the solution is:

  1. Choose and install gfortran from the above-mentioned website. For issue 2, this should be sufficient
  2. For issue 1, a soft link should be created: ln -s /usr/local/gfortran/bin/gfortran /usr/local/bin/

On Windows

If you are encountering the issue "C++14 standard requested but CXX14 is not defined", one option is to append the Makevars.win file under the .R directory with:

CXX11FLAGS=-O3 -Wno-unused-variable -Wno-unused-function CXX14FLAGS=-O3 -Wno-unused-variable -Wno-unused-function CXX14 = $(BINPREF)g++ -m$(WIN) -std=c++1y

Thanks to Robert Aue for providing this solution.

Then hopefully the installation works!