GammaPrior-class {bayesPO} | R Documentation |
This is used to represent the prior for lambdaStar individually. It still needs to be joined with the prior for Beta and Delta to be used in a model.
## S4 method for signature 'GammaPrior'
names(x)
## S4 method for signature 'GammaPrior'
x$name
## S4 replacement method for signature 'GammaPrior'
x$name <- value
## S4 method for signature 'GammaPrior'
show(object)
## S4 method for signature 'GammaPrior'
print(x, ...)
## S3 method for class 'GammaPrior'
print(x, ...)
x |
The GammaPrior object. |
name |
The requested slot. |
value |
New value. |
object |
The GammaPrior object. |
... |
Ignored. |
names
: A character vector with the prior parameters.
`$`
The requested slot's value.
`$<-`
: The new object with the updated slot.
show
and print
: The invisible object.
shape
The shape parameter of the Gamma distribution.
rate
The rate parameter of the Gamma distribution.
GammaPrior(0.0001, 0.0001)