Learn R Programming

surbayes

The goal of surbayes is to provide tools for Bayesian analysis of the seemingly unrelated regression (SUR) model. In particular, we implement the direct Monte Carlo (DMC) approach of Zellner and Ando (2010). We also implement a Gibbs sampler to sample from a power prior on the SUR model.

Installation

You can install the released version of surbayes from CRAN with:

install.packages("surbayes")

And the development version from GitHub with:

# install.packages("devtools")
devtools::install_github("ethan-alt/surbayes")

Example

This is a basic example which shows you how to sample from the posterior

library(surbayes)
## Taken from bayesm package
M = 10 ## number of samples
set.seed(66)
## simulate data from SUR
beta1 = c(1,2)
beta2 = c(1,-1,-2)
nobs = 100
nreg = 2
iota = c(rep(1, nobs))
X1 = cbind(iota, runif(nobs))
X2 = cbind(iota, runif(nobs), runif(nobs))
Sigma = matrix(c(0.5, 0.2, 0.2, 0.5), ncol = 2)
U = chol(Sigma)
E = matrix( rnorm( 2 * nobs ), ncol = 2) %*% U
y1 = X1 %*% beta1 + E[,1]
y2 = X2 %*% beta2 + E[,2]
X1 = X1[, -1]
X2 = X2[, -1]
data = data.frame(y1, y2, X1, X2)
names(data) = c( paste0( 'y', 1:2 ), paste0('x', 1:(ncol(data) - 2) ))
## run DMC sampler
formula.list = list(y1 ~ x1, y2 ~ x2 + x3)

## Fit models
out_dmc = sur_sample( formula.list, data, M = M )            ## DMC used
#> Direct Monte Carlo sampling used
out_powerprior = sur_sample( formula.list, data, M, data )   ## Gibbs used
#> Gibbs sampling used for power prior model

Copy Link

Version

Install

install.packages('surbayes')

Monthly Downloads

140

Version

0.1.2

License

GPL (>= 2)

Issues

Pull Requests

Stars

Forks

Maintainer

Ethan Alt

Last Published

August 26th, 2020

Functions in surbayes (0.1.2)

fastKronEye_Y

Fast kronecker product with response vector
sur_sample_cpp

Sample from SUR via Direct Monte Carlo (C++ version)
sample_sigma

Sample Sigma via Gibbs for SUR model
predict_surbayes_helper

Get one sample from predictive posterior of SUR
fastKronEye_crossprod

Fast kronecker product of crossproduct matrix
surbayes-package

surbayes: Bayesian Analysis of Seemingly Unrelated Regression Models
predict.surbayes

Get predictive posterior samples
predict_surbayes_cpp

Sample from predictive posterior density C++ helper
sur_sample_gibbs_cpp

Power Prior Gibbs sampling
sur_sample_powerprior

Sample from SUR posterior via power prior
sur_sample_cov_helper_cpp

Helper function to sample covariance
sur_sample

Sample from seemingly unrelated regression
sur_sample_dmc

Sample SUR model via direct Monte Carlo