Re: [R] package forecast is not working properly

2015-07-02 Thread Uwe Ligges
On 01.07.2015 14:51, Magda Joana Silva wrote: Hello all, I just installed "forecast" package but I have the following error when I try to load the library: library("forecast") Loading required package: zoo Attaching package: ‘zoo’ The following objects are masked from ‘package:base’:

Re: [R] package forecast is not working properly

2015-07-02 Thread David Winsemius
This has been reported once on rhelp and once on StackOverflow and both times the advice to update to R 3.2.1 was effective in removing the difficulty. (You did get a warning.) R 3.2.1 changed the number of arguments to nchar and this was announced in the NEWS. -- David. On Jul 1, 2015, at

[R] package forecast is not working properly

2015-07-01 Thread Magda Joana Silva
Hello all, I just installed "forecast" package but I have the following error when I try to load the library: > library("forecast") Loading required package: zoo Attaching package: ‘zoo’ The following objects are masked from ‘package:base’: as.Date, as.Date.numeric Loading required packa

Re: [R] Help with R package forecast

2012-03-23 Thread David Winsemius
On Mar 23, 2012, at 8:47 AM, jason wrote: When I type library() to see what is installed the following list in RED comes up. Packages in library '/home/jason/R/i686-pc-linux-gnu-library/2.13': This suggests you are using an old copy of R. Many time the current repository will only be ser

Re: [R] Help with R package forecast

2012-03-23 Thread Uwe Ligges
ffered for you. Hence upgrade to R-2.15.0 RC. Uwe Ligges thanks in advance Jason -- View this message in context: http://r.789695.n4.nabble.com/Re-Help-with-R-package-forecast-tp4498680p4498680.html Sent from the R help mailing list archive at Nabble.com. __

Re: [R] Help with R package forecast

2012-03-23 Thread jason
r.789695.n4.nabble.com/file/n4498680/08.png Any suggestions ? thanks in advance Jason -- View this message in context: http://r.789695.n4.nabble.com/Re-Help-with-R-package-forecast-tp4498680p4498680.html Sent from the R help mailing list archive at Nabble.com. _

Re: [R] R package Forecast

2011-06-29 Thread Dennis Murphy
Hi: Your object b is a 5 x 12 matrix. The error message says that ets() is expecting a univariate time series as its first argument. Try something like d <- ts(a[, 3], start = c(2005, 1), frequency = 12) fit <- ets(d) and see if that works. Untested since no reproducible example was provided. H

[R] R package Forecast

2011-06-29 Thread nejc bergant
Hello all First of all I must emphasize that I am fascinated about Forecast package. However I have difficulty to execute 'ets' procedure. After I write code: a<-read.table("test.txt", sep="\t", head=T) b<-matrix(a[,3], nrow=5, ncol=12, dimnames=list(c("2005","2006","2007","2008","2009"), c("jan"

[R] Package forecast

2007-10-24 Thread Joao Santos
Hello All, I trying to use the function auto.arima() from package forecast but I have a problem. My steps after I used the function auto.arima(...) I create the time series like this: >bbrass = scan("C:/Program Files/R/data PTIN/my_file.dat") >regts.start = ISOdatetime(2006, 7, 1, hour=0,