Displaying 4 results from an estimated 4 matches for "lenvir".
Did you mean:
envir
2009 Jun 13
3
'Errors' with Ubuntu
...without the mouse connected,
with or without my external hard-drive connected,
with or without my girlfriend being in the bath tub or not,
etc.
and all the other permutations that R would allow me to do...
if I had access to it.
Any and all cues would be greatly appreciated,
Many Thanks,
Len
lenvir@gmail.com <joseph.j.gazaille@gmail.com>
p.s. Ubuntu 9.04 is giving me problems
I never had with Ubuntu 8.04
[[alternative HTML version deleted]]
2010 Mar 18
1
Regression of a time series on its Quarters
# Dear List,
# I want to characterize a time series according to its Quarter components.
# My data ("a.ts":
http://docs.google.com/View?id=dfvvwzr2_478cr9k4cdb)? look like:
#???????????????? Qtr1????????? Qtr2????????? Qtr3????????? Qtr4
#?? 1948 -0.0714961837? 0.0101747827? 0.0654816569 -0.0227830729
#?? 1949 -0.1175517556? 0.1151378692? 0.1015777858 -0.1971535900
#?? 1950?
2009 Oct 13
1
How to specify an ARMA(1, [1,4]) model?
Hi,
I'm trying to model an ARMA(1,[1,4]),
i.e. I want only lags 1 and 4 of the Moving Average part.
It's the '[1,4]' part that is giving me a problem.
I've tried different arma's and arima's in different packages, namely:
packages tseries, fArma, FinTS, timeSeries, TSA, Zelig, ds1, forecast
For example, with package FinTS:
> ( ARIMA(y, order=c(1,0,c(1,4))) )
2009 Oct 13
0
How to specify an ARMA(1, [1,4]) model? Solved
On Tue, Oct 13, 2009 at 5:06 PM, Rolf Turner <r.turner@auckland.ac.nz>wrote:
>
> Not clear to me what the OP really wants. Perhaps the seasonal
> model is what's required; perhaps an arima(1,0,4) model with
> theta_2 and theta_3 constrained to be 0. The latter can be
> achieved with
>
> arima(x,order=c(1,0,4),fixed=c(NA,NA,0,0,NA,NA))
>
> Or perhaps