#' bggmMock: Bayesian Gaussian Graphical Models
#'
#'
#' @description The \code{R} package \strong{bggmMock} provides tools for making Bayesian inference in
#' Gaussian graphical models (GGM). The methods are organized around two general approaches for
#' Bayesian inference: (1) estimation \insertCite{Williams2019}{bggmMock} and (2) hypothesis testing
#' \insertCite{Williams2019_bf}{bggmMock}. The key distinction is that the former focuses on either the
#' posterior or posterior predictive distribution, whereas the latter focuses on model comparison
#' with the Bayes factor.
#'
#' The methods in \strong{bggmMock} build upon existing algorithms that are well-known in the literature.
#' The central contribution of \strong{bggmMock} is to extend those approaches:
#'
#' \enumerate{
#'
#' \item Bayesian hypothesis testing with the novel matrix-F prior distribution \insertCite{Mulder2018}{bggmMock}
#'
#' \itemize{
#'
#' \item Exploratory hypothesis testing \code{\link{explore}}.
#'
#' \item Confirmatory hypothesis testing \code{\link{confirm}}.
#'
#' }
#'
#' \item Comparing GGMs \insertCite{williams2020comparing}{bggmMock}
#'
#' \itemize{
#'
#' \item Partial correlation differences \code{\link{ggm_compare_estimate}}.
#'
#' \item Posterior predictive check \code{\link{ggm_compare_ppc}}.
#'
#' \item Exploratory hypothesis testing \code{\link{ggm_compare_explore}}.
#'
#' \item Confirmatory hypothesis testing \code{\link{ggm_compare_confirm}}.
#'
#'
#' }
#'
#'
#' \item Extending inference beyond the conditional (in)dependence structure
#'
#' \itemize{
#'
#' \item Predictability with Bayesian variance explained \insertCite{gelman_r2_2019}{bggmMock}
#' \code{\link{predictability}}.
#'
#' \item Posterior uncertainty in the partial correlations \code{\link{estimate}}.
#'
#'
#' }
#'
#' }
#'
#' Furthermore, the computationally intensive tasks are written in \code{c++} via the \code{R}
#' package \strong{Rcpp} \insertCite{eddelbuettel2011rcpp}{bggmMock} and the \code{c++}
#' library \strong{Armadillo} \insertCite{sanderson2016armadillo}{bggmMock}, there are plotting functions
#' for each method, control variables can be included in the model, and there is support for
#' missing values \code{\link{bggmMock_missing}}.
#'
#' \bold{Supported Data Types}:
#'
#' \itemize{
#'
#' \item Continuous: The continuous method was described \insertCite{@in @Williams2019_bf;textual}{bggmMock}.
#'
#' \item Binary: The binary method builds directly upon \insertCite{@in @talhouk2012efficient;textual}{bggmMock},
#' that, in turn, built upon the approaches of \insertCite{lawrence2008bayesian;textual}{bggmMock} and
#' \insertCite{webb2008bayesian;textual}{bggmMock} (to name a few).
#'
#' \item Ordinal: Ordinal data requires sampling thresholds. There are two approach included in \bold{bggmMock}: (1)
#' the customary approach described in \insertCite{@in @albert1993bayesian;textual}{bggmMock} (the default) and
#' the 'Cowles' algorithm described in \insertCite{@in @cowles1996accelerating;textual}{bggmMock}.
#'
#'
#' \item Mixed: The mixed data (a combination of discrete and continuous) method was introduced
#' \insertCite{@in @hoff2007extending;textual}{bggmMock}. This is a semi-parametric copula model
#' (i.e., a copula GGM) based on the ranked likelihood. Note that this can be used for data
#' consisting entirely of ordinal data.
#'
#' }
#'
#' \bold{Methodological Residue}:
#'
#' The primary focus of \code{bggmMock} is Gaussian graphical modeling (the inverse covariance matrix).
#' The residue is a suite of useful methods not explicitly for GGMs:
#'
#' \enumerate{
#'
#' \item Bivariate correlations for binary (tetrachoric), ordinal (polychoric), mixed (rank based),
#' and continous (Pearson's) data \code{\link{zero_order_cors}}.
#'
#' \item Multivariate regression for binary (probit), ordinal (probit),
#' mixed (rank likelihood), and continous data (\code{\link{estimate}}).
#'
#' \item Multiple regression for binary (probit), ordinal (probit),
#' mixed (rank likelihood), and continous data (e.g., \code{\link{coef.estimate}}).
#' }
#'
#' \strong{Note on Conditional (In)dependence Models for Latent Data}:
#'
#' All of the data types (besides continuous) model latent data. That is, unoboserved data that is
#' assumed to be Gaussian distributed. For example, a tetrachoric correlation (binary data) is a
#' special case of a polychoric correlation (ordinal data). Both relations are between "theorized
#' normally distributed continuous \strong{latent} variables"
#' (\href{https://en.wikipedia.org/wiki/Polychoric_correlation}{Wikipedia}). In both instances,
#' the correpsonding partial correlation between observed variables is conditioned
#' on the remaining variables in the \emph{latent} space. This implies that interpration
#' is similar to continuous data, but with respect to latent variables. We refer interested users
#' to \insertCite{@page 2364, section 2.2, in @webb2008bayesian;textual}{bggmMock}.
#'
#'
#' \strong{High Dimensional Data?}
#'
#' \strong{bggmMock} was builit specificially for social-behvarioal scientists. Of course, the methods
#' can be used by all researchers. However, there is \emph{not} support for high-dimensonal data
#' (i.e., more variables than observations) that are common place in the genetics literature.
#' These data are rare in the social-behavioral sciences. In the future, support for high-dimensional
#' data may be added to \strong{bggmMock}.
#'
#' @references
#' \insertAllCited{}
#'
#'
#' @docType package
#'
#' @name bggmMock-package
#'
#' @import Rcpp
#' @importFrom Rcpp sourceCpp
#' @useDynLib bggmMock, .registration = TRUE
#'
NULL
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.