powered by
Returns posterior point estimates (mean or median) for all model parameters.
# S3 method for clmstan coef(object, type = c("mean", "median"), ...)
A named numeric vector with:
Threshold coefficients (e.g., "1|2", "2|3", ...)
Regression coefficients (variable names from formula)
A clmstan object
Type of point estimate: "mean" (default) or "median"
Additional arguments (ignored)
if (FALSE) { fit <- clm_stan(rating ~ temp, data = wine) coef(fit) coef(fit, type = "median") }
Run the code above in your browser using DataLab