print.circGLM: Print circGLM Object

Description Usage Arguments See Also Examples

View source: R/circGLMClassPrintFunctions.R

Description

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

Usage

1
2
## S3 method for class '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

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
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")

circglmbayes documentation built on Jan. 22, 2021, 5:09 p.m.