print.cglmmTest function

Print results of test of cosinor model

Print results of test of cosinor model

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

Arguments

  • x: A test_cosinor object.
  • ...: Arguments passed to print

Returns

print(x) returns x invisibly.

Examples

data_2_component <- simulate_cosinor( n = 10000, mesor = 5, amp = c(2, 5), acro = c(0, pi), beta.mesor = 4, beta.amp = c(3, 4), beta.acro = c(0, pi / 2), family = "gaussian", n_components = 2, period = c(10, 12), beta.group = TRUE ) mod_2_component <- cglmm( Y ~ group + amp_acro(times, n_components = 2, group = "group", period = c(10, 12) ), data = data_2_component ) test_cosinor_levels( mod_2_component, param = "amp", x_str = "group" )