Learn R Programming

circglmbayes (version 1.3.0)

print.circGLM: Print circGLM Object

Description

General print function for circGLM objects, which dispatches the chosen type of printing to the corresponding function.

Usage

# S3 method for circGLM
print(x, type = "text", ...)

Arguments

x

A circGLM object to be printed.

type

Character string giving the type of printing, such as "text", "mcmc", "all", "coef".

...

Additional arguments to be passed to print functions.

See Also

print_text.circGLM, print_mcmc.circGLM, print_all.circGLM, print_coef.circGLM.

Examples

Run this code
# NOT RUN {
print(circGLM(th = rvmc(10, 1, 1)))

dat <- generateCircGLMData()
cglmmod <- circGLM(th ~ ., dat)

print(cglmmod)

print(cglmmod, type = "mcmc")

print(cglmmod, type = "all")

print(cglmmod, type = "coef")

# }

Run the code above in your browser using DataLab