similar to: study resources for time series?

Displaying 20 results from an estimated 300 matches similar to: "study resources for time series?"

2009 Mar 31
1
Jarque-Bera test and Ljung-Box test for multivariate time series
Hi! I know that there is function in fBasics package for univariate Jarque-Bera test and a funtion for univariate Ljung-Box test in stats package. But I am wondering if there is a function somewhere to do the tests for multivariate time series? Thanks, John [[alternative HTML version deleted]]
2007 Sep 25
1
fSeries Garch and Arfima Ox interface
Hello all, This is a request for help from somebody who has the Ox interfaces working in R. I am trying to get the Ox interfaces working for Arfima and Garch modelling. However, I am having several problems: 1. The link to download G at rch_v40 does not work. Does anybody have a copy to email to me please? 2. Various guides offer different instructions for installing Ox in the correct place
2011 Oct 19
1
ar() - AIC and BIC
Hi, I'm slowly working through Tsay's "Analysis of Financial Time Series" 3rd ed. ?I'm trying to replicate Table 2.1 on p.47, which gives PACF, AIC, and BIC for the monthly simple returns of the CRSP value-weighted index. The data: http://faculty.chicagobooth.edu/ruey.tsay/teaching/fts3/m-ibm3dx2608.txt > da <-
2006 May 29
1
TsayData
Hi, I'm trying to work with TsayData in fSeries package. How can i fetch any time series data of this package. Please advice. Thanks, Sumanta Basak. Send instant messages to your online friends http://in.messenger.yahoo.com
2007 Jun 12
5
R Book Advice Needed
I am new to using R and would appreciate some advice on which books to start with to get up to speed on using R. My Background: 1-C# programmer. 2-Programmed directly using IMSL (Now Visual Numerics). 3- Used in past SPSS and Statistica. I put together a list but would like to pick the "best of" and avoid redundancy. Any suggestions on these books would be helpful (i.e. too much
2009 Sep 30
1
Re cursive regression
Hi there, I'm in desperate need to figure out how to solve this issue. I need to estimate a recursive model for a time series data of asset returns. The dependent variable is the asset return and then I have a set of k variables, a lagged value of the dependent variable (plus an intercept) as regressors. My sample period (monthly observations) starts on Jan 1972. What I need to do is the
2008 Nov 09
2
please recommend statistics, time series and econometrics books with finance, macroeconomics, trading and business applications
Hi all, Please recommend good books for the following three categories. (I am aim at finance, macroeconomics, trading and business applications). (1) statistical (financial) data analysis; (2) time series; (3) econometrics. More specifically, I am looking for the following two types of books: (1) Books that provide big pictures and intuitions and books that connect dots... For example, there
2006 Jan 30
1
fExtreme packages
Hello, I am a new user of R. I am trying to use the packages fBasics and fExtremes when i am running the examples I get few error. Could someone tell me what is happenig? Thank you beforehand. from Fbasics packages: xmpfBasics() Error in file(file, "r") : unable to open connection In addition: Warning message: cannot open file '/usr/lib/R/library/fBasics/demoIndex'
2008 Feb 02
1
ARCH LM test for univariant time series
Hi, Does anyone know if R has a Lagrange multiplier (LM) test for ARCH effects for univariant time series? Thanks! -- Tom [[alternative HTML version deleted]]
2005 Dec 29
0
calculating recursive sequences
Hi, I was trying to repeat the estimation of threshold GARCH models from the book "Analysis of Financial Time Series" by Ruey S. Tsay, and I was succesfull, but I had to use "for" loop, which is quite slow. The loop is necessary, since you need to calculate recursive sequence. Is there a faster way to do this in R, without using loops? The model is such: r_t = \mu + \alpha_2
2013 Apr 08
0
Maximum likelihood estimation of ARMA(1,1)-GARCH(1,1)
Hello Following some standard textbooks on ARMA(1,1)-GARCH(1,1) (e.g. Ruey Tsay's Analysis of Financial Time Series), I try to write an R program to estimate the key parameters of an ARMA(1,1)-GARCH(1,1) model for Intel's stock returns. For some random reason, I cannot decipher what is wrong with my R program. The R package fGarch already gives me the answer, but my customized function
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))) )
2008 Feb 13
0
FinTS_0.2-7
Hi, All: FinTS version 0.2-7 is now available on CRAN. This version adds two new functions: * ArchTest to compute the Engle (1982) Lagrange multiplier test for conditional heteroscedasticity, discussed on pp. 101-102 of Tsay, with examples on those pages worked in the R script in "~R\library\FinTS\scripts\ch03.R", where "~R" is your local R installation directory.
2008 Feb 13
0
FinTS_0.2-7
Hi, All: FinTS version 0.2-7 is now available on CRAN. This version adds two new functions: * ArchTest to compute the Engle (1982) Lagrange multiplier test for conditional heteroscedasticity, discussed on pp. 101-102 of Tsay, with examples on those pages worked in the R script in "~R\library\FinTS\scripts\ch03.R", where "~R" is your local R installation directory.
2009 Feb 08
0
Initial values of the parameters of a garch-Model
Dear all, I'm using R 2.8.1 under Windows Vista on a dual core 2,4 GhZ with 4 GB of RAM. I'm trying to reproduce a result out of "Analysis of Financial Time Series" by Ruey Tsay. In R I'm using the fGarch library. After fitting a ar(3)-garch(1,1)-model > model<-garchFit(~arma(3,0)+garch(1,1), analyse) I'm saving the results via > result<-model
2009 Jun 15
4
books on Time series
Dear list fellows, I want to study time series and use R to analyse time series of fishing data from several species (landings and cpue) investigating the correlation between them and with environmental factors (water temperature, wind, etc.). Searching at Amazon I found three books with examples in R: Time Series Analysis: With Applications in R by Jonathan D. Cryer and Jonathan D. Cryer
2008 Mar 21
1
tseries(arma) vs. stats(arima)
Hello, The "arma" function in the "tseries" package allows estimation of models with specific "ar" and "ma" lags with its "lag" argument. For example: y[t] = a[0] + a[1]y[t-3] +b[1]e[t-2] + e[t] can be estimated with the following specification : arma(y, lag=list(ar=3,ma=2)). Is this possible with the "arima" function in the
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 Mar 07
10
popular R packages
I would like to get some idea of which R-packages are popular, and what R is used for in general. Are there any statistics available on which R packages are downloaded often, or is there something like a package-survey? Something similar to http://popcon.debian.org/ maybe? Any tips are welcome! ----- Jeroen Ooms * Dept. of Methodology and Statistics * Utrecht University Visit
2008 Mar 29
0
FinTS_0.3-1
Hi, All: FinTS version 0.3-1 is now available on CRAN. This version adds a function 'apca' for "Asymptotic Principal Components Analysis", as discussed in Tsay (2005) Analysis of Financial Time Series, 2nd ed. (Wiley, sec. 9.6), in addition to minor improvements in the partially complete scripts for chapters 3 and 9. Spencer Graves