Description Usage Arguments Value Examples
print
method for dgo_fit-class
objects
get_elapsed_time
: extract chain run times from dgo_fit
-class
objects
summary
method for dgo_fit-class
objects
summarize
method for dgo_fit-class
objects
as.data.frame
method for dgo_fit-class
objects
rhats
: extract split R-hats from dgo_fit
-class objects
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | ## S4 method for signature 'dgo_fit'
show(object)
## S4 method for signature 'dgo_fit'
print(x, ...)
print.dgo_fit(x, ...)
## S4 method for signature 'dgo_fit'
get_elapsed_time(object, ...)
## S4 method for signature 'dgo_fit'
summary(object, ..., verbose = FALSE)
## S4 method for signature 'dgo_fit'
get_posterior_mean(object, pars = "theta_bar", ...)
summarize(x, ...)
## S4 method for signature 'dgo_fit'
summarize(x, pars = "theta_bar", funs = c("mean", "sd",
"median", "q_025", "q_975"))
## S3 method for class 'dgo_fit'
as.data.frame(x, ..., pars = "theta_bar",
keep.rownames = FALSE)
rhats(x, ...)
## S4 method for signature 'dgo_fit'
rhats(x, pars = "theta_bar")
|
object |
A |
x |
A |
... |
Further arguments to |
verbose |
Whether to show the full output from the |
pars |
Parameter name(s) |
funs |
Quoted names of summary functions. 'q_025' is accepted as shorthand for 'function(x) quantile(x, .025)', and similarly 'q_975'. |
keep.rownames |
Whether to retain original parameter names with numeric indexes, as output from RStan. |
A table giving split R-hats for model parameters
1 2 3 4 5 6 7 | data(toy_dgirtfit)
summarize(toy_dgirtfit)
data(toy_dgirtfit)
# access posterior samples
as.data.frame(toy_dgirtfit, pars = 'theta_bar')
data(toy_dgirtfit)
rhats(toy_dgirtfit)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.