matteoredaelli / strategico

Automatically exported from code.google.com/p/strategico
GNU General Public License v3.0
1 stars 1 forks source link

Removing occurrences of c("Mean","Trend","ExponentialSmooth","LinearModel","Arima") #24

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Removing the vector occurrences of 
c("Mean","Trend","ExponentialSmooth","LinearModel","Arima") from files 
(plugins/ltp.R,..)

And using/adapting teh function (file plugins/eval_ltp.R)

ltp.GetModels <- function() {
  models <- rbind(
                  c("linear", "LinearModel", "green"),
                  c("arima", "Arima", "red"),
                  c("es", "ExponentialSmooth", "blue"),
                  c("trend", "Trend", "gray"),
                  c("mean", "Mean", "black")
                  )
  colnames(models) <- c("id", "name", "color")
  data.frame(models)
}

Original issue reported on code.google.com by matteo.redaelli on 29 Jun 2011 at 12:47

GoogleCodeExporter commented 9 years ago

Original comment by matteo.redaelli on 30 Jan 2012 at 8:05