showPrior {bayesGAM}R Documentation

Display the priors used in bayesGAM

Description

Prints a list of priors for β\beta, λ\lambda, ϵ\epsilon, and aa, where applicable.

Usage

showPrior(object, ...)

## S4 method for signature 'bayesGAMfit'
showPrior(object, params = "all")

Arguments

object

Object of type bayesGAMfit generated from bayesGAM

...

Additional arguments for showPrior

params

character vector of the names of parameters to return

  • β\beta beta

  • ϵ\epsilon eps

  • λ\lambda lambda

  • a]aa] a

Value

none

Examples

require(stats); require(graphics)
f <- bayesGAM(weight ~ np(height), data = women, 
              family = gaussian, iter = 500, chains = 1)
showPrior(f)

[Package bayesGAM version 0.0.2 Index]