Brr {brr} | R Documentation |
brr
objectSet up the Bayesian model and the observations
Brr(...)
## S3 method for class 'brr'
summary(object, phi0 = 1, hypothesis = "greater", ...)
## S3 method for class 'summary.brr'
print(x, table.style = "grid", ...)
... |
prior parameters |
object |
an object of class |
phi0 |
the value of interest of the rate ratio |
hypothesis |
|
x |
the output to be printed |
table.style |
the style of the table to print
(passed to |
Brr
returns an object of class brr
, summary.brr
returns a list but prints its contents through print.summary.brr
model <- Brr(a=2, b=3)
model()
# add parameters
model <- model(c=4, d=5)
model()
# replace parameters
model <- model(a=10, b=11)
model()
model <- Brr()
summary(model)
model <- Brr(x=3, y=4)
summary(model)
model <- Brr(a=2, b=4, T=10)
summary(model)
model <- model(a=2, b=4, c=3, d=5, S=10, T=10)
summary(model)
model <- model(x=5, y=10)
summary(model)