Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

laplace

Summarization of a posterior density by the Laplace method


Description

For a general posterior density, computes the posterior mode, the associated variance-covariance matrix, and an estimate at the logarithm at the normalizing constant.

Usage

laplace(logpost,mode,...)

Arguments

logpost

function that defines the logarithm of the posterior density

mode

vector that is a guess at the posterior mode

...

vector or list of parameters associated with the function logpost

Value

mode

current estimate at the posterior mode

var

current estimate at the associated variance-covariance matrix

int

estimate at the logarithm of the normalizing constant

converge

indication (TRUE or FALSE) if the algorithm converged

Author(s)

Jim Albert

Examples

logpost=function(theta,data)
{
s=5
sum(-log(1+(data-theta)^2/s^2))
}
data=c(10,12,14,13,12,15)
start=10
laplace(logpost,start,data)

LearnBayes

Functions for Learning Bayesian Inference

v2.15.1
GPL (>= 2)
Authors
Jim Albert
Initial release
2018-03-18

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.