https://github.com/cran/season
Raw File
Tip revision: 6afc949373932f0195a9ae65146c4134cecf71d1 authored by Adrian Barnett on 28 July 2010, 00:00:00 UTC
version 0.2-5
Tip revision: 6afc949
print.Cosinor.R
## print.Cosinor.R
## Prints basic results from Cosinor

print.Cosinor<-function(x, ...){

  ## Checks
  if (class(x)!="Cosinor"){stop("Object must be of class 'Cosinor'")} 

  ## Use GLM function ###
  print.glm(x$glm, ...)
} # end of function
back to top