https://github.com/cran/season
Raw File
Tip revision: de1c8e88aa3207bb57350371d2db8b6eaf51309c authored by Adrian Barnett on 03 August 2012, 00:00:00 UTC
version 0.3-2
Tip revision: de1c8e8
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