Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
asl committed Apr 23, 2012
1 parent b0d1dea commit fcc6a44
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
8 changes: 0 additions & 8 deletions R/common.R
Expand Up @@ -112,14 +112,6 @@ clusterify <- function(this, ...)
UseMethod("clusterify"); UseMethod("clusterify");
calc.v <- function(this, ...) calc.v <- function(this, ...)
UseMethod("calc.v"); UseMethod("calc.v");
lrf <- function(this, ...)
UseMethod("lrf")
roots <- function(x)
UseMethod("roots")
rforecast <- function(this, ...)
UseMethod("rforecast")
vforecast <- function(this, ...)
UseMethod("vforecast")


.object.size <- function(this, ...) .object.size <- function(this, ...)
UseMethod(".object.size") UseMethod(".object.size")
Expand Down
9 changes: 9 additions & 0 deletions R/forecast.R
Expand Up @@ -192,3 +192,12 @@ vforecast.ssa <- function(x, groups, len = 1,
...) { ...) {
stop("generic vector forecast not implemented yet!") stop("generic vector forecast not implemented yet!")
} }

lrf <- function(this, ...)
UseMethod("lrf")
roots <- function(x)
UseMethod("roots")
rforecast <- function(this, ...)
UseMethod("rforecast")
vforecast <- function(this, ...)
UseMethod("vforecast")

0 comments on commit fcc6a44

Please sign in to comment.