Displaying 20 results from an estimated 5000 matches similar to: "R package for x-12-arima"
2005 Dec 16
1
Bug in acepack (PR#2352)
This ancient bug was tracked to the acepack library, line 556 in line
src/avas.f
The troublesome line is:
if (x(n).gt.x(1)) go to 30
Since the input arguments are empty, referencing x(1) and x(n) cause
a Segmentation fault, and cause R to crash. Acepack author and
maintainer Rob Tibshirani <tibs at utstat.toronto.edu> has been contacted
with this information. This is not a
2004 Jun 10
1
X-12-ARIMA
Dear All,
I've used the X-12-ARIMA or its earlier versions from S+ and R under both Unix
and Windows platforms for many years using the klugey approach of calling an
executable using in R the system function. I've found this serviceable for the
following reasons.
1) Paul Gilbert's hunch is correct that many of the subroutines have extensive
IO calls (especially the X-11 engine)
2004 May 25
1
Tramo-seats support in GRETL, but not R
On Mon, 24 May 2004 12:00:46 +0200 v.demartino2@virgilio.it wrote:
> Working - among other things- in the field of (short & long term)
electricity
> forecast,
* * *
> we have to comply with the Tramo-seats closed-source procedure
(http://www.bde.es/informes/be/docs/dt0014e.pdf)
> to deal with seasonality of electricity monthly time-series, in line
with
> the methodology
2023 Jan 05
1
R 'arima' discrepancies
Rob J Hyndman gives great explanation here
(https://robjhyndman.com/hyndsight/estimation/) for reasons why results
from R's arima may differ from other softwares.
@iacobus, to cite one, 'Major discrepancies between R and Stata for
ARIMA'
(https://stackoverflow.com/questions/22443395/major-discrepancies-between-r-and-stata-for-arima),
assign the, sometimes, big diferences from R
2012 Jun 25
0
x12 ARIMA Moving Seasonality F Test Issue
I'm having a great deal of trouble replicating x12 ARIMA's F-test used to
detect moving seasonality. According to all literature I could find, the
test is apparently a 2-way ANOVA with year and month as factors for the SI
ratios determined by x12's smoothing algorithm. Note the SI ratio is simply
the detrended series. The summary I get from manually running this 2-way
ANOVA using the
2008 Jul 23
1
Time series reliability questions
Hello all,
I have been using R's time series capabilities to perform analysis for quite
some time now and I am having some questions regarding its reliability. In
several cases I have had substantial disagreement between R and other packages
(such as gretl and the commercial EViews package).
I have just encountered another problem and thought I'd post it to the list. In
this case,
2010 Dec 08
0
Doing seasonal adjustment from within R
Is anyone aware of a way to seasonally adjust time series data using X-12 ARIMA and TRAMO/SEATS from within R? I know that that one can seasonally adjust data with gretl, which I understand offers some level of R integration. However, all the examples I've seen of gretl/R integration involve working interactively with gretl, while here I want to work interactively with R and call gretl in the
2007 May 27
0
Not able to understand the behaviour of boot
Folks,
I have a time-series of 875 readings of the weekly returns of a stock
market index (India's Nifty). I am interested in the AR(1)
coefficient. When I do arima(r, order=c(1,0,0)) I get a statistically
significant AR1 coefficient.
If we apply the ordinary bootstrap to this problem, this involves
sampling with replacement, which destroys the time-series
structure. Hence, if we do
2004 Jul 04
1
Re: Seasonal ARMA model
> It might clarify your thinking to note that a seasonal ARIMA model
> is just an ``ordinary'' ARIMA model with some coefficients
> constrained to be 0 in an efficient way. E.g. a seasonal AR(1) s =
> 4 model is the same as an ordinary (nonseasonal) AR(4) model with
> coefficients theta_1, theta_2, and theta_3 constrained to be 0. You
> can get the same answer as from
2008 Dec 01
0
gretl Conference, Bilbao 2009
Dear r-help moderators:
If you consider (as I hope) this message is not totally off-topic ?could you
please, redistribute to the r-help list?
Thank you.
---------
Gretl (GNU Regression, Economestrics and Time Series Library) is a
cross-platform software package for econometric analysis, written in the C
programming language. It is is free, open-source software with GNU GPL
License. Allin
2000 Dec 24
1
gretl and R: info and request
Hello,
I thought some of you might like to know about a GNU project
that is complementary to R in some ways, namely gretl
http://ricardo.ecn.wfu.edu/gretl
(GNU Regression, Econometrics and Time-series Library).
gretl (a library with cli and gui clients, the gui using
GTK) is designed to be very user-friendly, and suitable
for teaching econometrics. It has a fairly wide variety
of least-squares
2011 Dec 06
1
About summary in linear models
Hello!!, for linear models fit I use Gretl, but now I'm starting to use R,
I would like to know if is there some function to obtain a extended summary
like in Gretl.
I will write a example in Gretl
Modelo 1: MCO, usando las observaciones 1968-1982 (T = 15)
Variable dependiente: Invest
Coeficient
St error
t-ratio
p-value
const
377,631
35,0955
10,7601
<0,00001
***
GNP
2009 Sep 29
0
Incoherence between arima.sim and auto.arima
Hello,
I have a question about function arima.sim
I tried to somulate a AR(1) process, with no innovation, no error term.
I used this code:
library(forecast)
e=rnorm(100,mean=0,sd=0)
series=arima.sim(model=list(ar=0.75),n=100,innov=e)+20
Then I tried to applicate ti this series auto.arima function:
mod1<-auto.arima(series,stepwise=FALSE,trace=TRUE,ic='aicc')
The best model returned
2007 Apr 13
0
[LLVMdev] Wiki
On Fri, 2007-04-13 at 17:11 -0500, Vikram S. Adve wrote:
> TSG (our support group) is going to set up a Wiki on zion so that
> access can be checked against a list of some sort.
What does that mean exactly? Will the users be authenticated? If not,
this isn't acceptable .. spam.
What wiki is being set up?
> It should happen
> by early next week, perhaps sooner (not
2009 Mar 08
0
ARIMA second order differencing problem
Hi,
I have been using this site (
http://www.stat.pitt.edu/stoffer/tsa2/Rissues.htm) to help me with some
ARIMA modelling in R.
Unfortunately the methods mentioned do not appear to work with second order
differencing; arima(*, 2, *).
I have used some dummy data to illustrate my point.
When I use the xreg=... method, the estimate of intercept is *way* off. This
can be seen by the high s.e but I
2014 Oct 09
0
help!!
Yes. You need a server and a programming to the list that users might be
able to pick songs. Like this...
<link rel="stylesheet" type="text/css" href="
http://server6.reliastream.com/theme/widget_ondemand.css" />
<div id="cc_on_demand_content">Loading...</div>
Mit freundlichen Gr??en
Scott Winterstein
EMAIL: 0turn1 at gmail dot com
On
2008 Sep 16
0
Warning messages after auto.arima
Dear R-helpers.
Would appreciate if someone can explain the warning messages below, after
auto.arima. I couldn't find any clue in the archived help.
Also, how do I retrieve the AICs of each tried model in auto.arima? The
purposes are (1) to output to a text file, and (2) to find the 2nd best
model by finding 2nd lowest AIC instead of eyeballing thru the value at the
console
2009 Oct 22
1
arima crashes too
Another pathological test.
arima does not crash for that series that crashes arma:
arima(c(2.01, 2.22, 2.09, 2.17, 2.42), order=c(1,0,0))
However, arima crashes for this:
arima(c(1.71, 1.78, 1.95, 1.59, 2.13), order=c(1,0,0))
arima seems pretty consistent in its crashing behaviour, since crashing for
one series means crashing for all affine series:
lets.crash.arima <- c(71, 78, 95, 59,
2003 Jan 09
2
using arima() function
HI, there,
When i use R, i tried to use function arima(), it complains:
Error: couldn't find function "arima"
But when I type "help.search("arima") ",
I got arima() poped up..
arima(ts) ARIMA Modelling of Time Series
arima.sim(ts) Simulate from an ARIMA Model
arima0(ts) ARIMA Modelling of Time Series -- Preliminary
2013 Jul 18
0
Difference between arima(1, 1, 1) for y and arima(1, 0, 1) for diff(y)
Dear all,
When I run an arima(1,1,1) on an I(1) variable, e.g. y, I get different
estimates to when I first difference the variable myself, e.g y2<-diff(y),
and then run arima(1,0,1) on y2. Shouldn't these two approaches give the
same output?
Any help will be much appreciated.
george
--
View this message in context: