Skip to contents

Print a summary of an nscosinor() object

Usage

# S3 method for class 'summary.nsCosinor'
print(x, ...)

Arguments

x

a summary.nsCosinor object produced by summary.nsCosinor().

...

further arguments passed to or from other methods.

Value

summary - Statistics for non-stationary cosinor based on MCMC chains.

Examples

# \donttest{
# model to fit an annual pattern to the monthly cardiovascular disease data
f <- c(12)
tau <- c(10,50)
if (FALSE) { # \dontrun{
  res12 <- nscosinor(
    data = CVD,
    response = 'adj',
    cycles = f,
    niters = 200,
    burnin = 100,
    tau = tau
    )
summary(res12)
} # }
# }