similar to: work about all time series analysis with examples or exercises

Displaying 20 results from an estimated 20000 matches similar to: "work about all time series analysis with examples or exercises"

2004 Mar 21
0
Solutions to Exercises - Data Analysis & Graphics Using R
This message is aimed at anyone who may be using exercises from my book with John Braun for teaching purposes. I am using this channel of communication in the absence of any other obvious effective channel. I ask the forbearance of list members. Our intention is to post solutions to selected exercises (the more challenging exercises) on the web, via a link from
2009 Oct 04
1
offlist Re: AW: Urgently needed Exercise solutions related to PracticalData Analysis Using R Statisctial Software
Accepted and forgotten. It just reminds us to check on our prejudices once in a while. Also, I realized that my description was not entirely accurate. You actually had to click the link on the page you posted to get this: http://www.odesk.com/jobs/College-Assistance_~~dd7622f6bdef9177 I am an MSc. computer science student in a foreign university! Need help to solve the exercises in the following
2011 Jun 20
0
Solutions to exercises in "Introductory Statistics with R" OR Intro. to R Book Suggestions with Solutions Available
Hi-- I'm trying to teach myself R using Peter Dalgaard's "Introductory Statistics with R." Does anyone know if there are solutions available for the exercises? I'm really just hoping to learn by going through exercises and checking myself, so alternatively, does anyone know of an introductory textbook to R that does have answers available either in the back or online?
1999 Jul 08
1
new time series package available
Fritz just put the first version of a new time series package to the contrib section at CRAN. The package is called "tseries.tgz" and provides a library for time series analysis. It contains acf Autocorrelation Function adf.test Augmented Dickey-Fuller Test amif Auto Mutual Information Function bds.test BDS Test
1999 Jul 08
1
new time series package available
Fritz just put the first version of a new time series package to the contrib section at CRAN. The package is called "tseries.tgz" and provides a library for time series analysis. It contains acf Autocorrelation Function adf.test Augmented Dickey-Fuller Test amif Auto Mutual Information Function bds.test BDS Test
2012 May 09
3
R exercises - too confusing for me.
Hi! I tried everything to avoid asking somebody but I have absolutely no clue how to solve this tasks. I'll be really glad if someone could explain that to me... 1. http://r.789695.n4.nabble.com/file/n4619850/task1.gif Well, the first part is of course no problem but I have really trouble with the tasks i) and ii). just don't know how to write the function and why I should use
2009 Oct 04
2
Urgently needed Exercise solutions related to Practical Data Analysis Using R Statisctial Software
Hello, Can anybody help me in solving these exercises on regular basis paid or unpaid basis. If he/she want to pay by PayPal then it should be noticed that mention at this email kindly your paypal email account where one can transfer money in all cases. But please respect the deadline in al cases.. *Dealine for this assignment is 07.10.09.* *If it is paid based then kindly let me know a decent
2007 Feb 26
1
Partial whitening of time series?
I have a time series with a one year lag, ar=0.5. The series has some interesting events that disappear when the series is whitened (i.e., fitting an AR process and looking at the residuals). I'd like to remove the autocorrelation in stages to see the effect on the time series. Is there a way to specify the autocorrelation term while fitting an AR process? For instance, given the following:
2013 May 03
0
Courses: Statistical Analysis with R - Bayesian Data Analysis with R and WinBUGS
Dear list members, Apologies for cross-posting. Please, find below the information of two statistical courses with R: 1) Statistical Analysis with R 2) Bayesian Data Analysis with R and WinBUGS If you have any question don't hesitate to contact me. Best regards, Pablo ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ *Two days course in: Statistical Analysis with R *Where:
2012 May 31
2
time-series statistics collection
Hello, I am trying to collect several global measures or statistics for time-series as well as packages of R that can compute them. I have found several of them in papers and books, but the literature is so big i am sure i am missing several of them. skewness kurtosis min max mean SD trend seasonality periodicity chaos (Lyapunov Exponent) / Largest Lyapunov Exponent (i think is the same
2003 Aug 13
1
means comparison with seasonal time series?
Dear R list, I have a sequence of weekly observations of number of adults and larvae in various size classes from a butterfly population living in a subtropical area with pronounced wet and dry seasons. Wet and dry seasons are each defined 26 weeks long with fixed start and end dates. The data span 103 weeks (two seasons each of wet and dry) with some missing weeks. What I would like to do is
2009 May 13
3
Checking a (new) package - examples require other package functions
I am creating an R package. I ran R CMD check on the package, and everything passed until it tried to run the examples. Then, the result was: * checking examples ... ERROR Running examples in REEMtree-Ex.R failed. The error most likely occurred in: > ### * AutoCorrelationLRtest > > flush(stderr()); flush(stdout()) > > ### Name: AutoCorrelationLRtest > ### Title: Test for
2005 Jan 10
2
Query: simple autocorrelation ina time series
I hope you can help with what might be an easy query. I am doing some simple simulations where I am generating series of data from a normal distribution using rnorm. I am then treating these as a time series. I want to know how I can incorporate correlation in the series (autocorrelation) i.e. make the observations non-independent, with a known (but simple) correlation structure. In other words I
2010 Apr 17
2
interpreting acf plot
Hello, I am attending a course in Computational Statistics at ETH and in one of the assignments I am asked to prove that a time series is not autocorrelated using the R function "acf". I tried out the acf function with the given data, according to what I found here: http://landshape.org/enm/options-for-acf-in-r/ this test data does not look IID but rather shows some trends so how can I
2010 Aug 30
1
How to Remove Autocorrelation from Simple Moving Average time series
Hi R experts, I am trying to remove autocorrelation from Simple Moving Average time series. I know that this can be done by using seasonal ARIMA like, library(TTR) data <- rnorm(252) n=21 sma_data=SMA(data,n) sma_data=sma_data[-1:-n] acf(sma_data,length(sma_data))
2013 Oct 16
0
course: Bayesian Data Analysis with R and WinBUGS
Dear list members, Best greetings and apologies for cross-posting. There are available places for the course: "Bayesian Data Analysis with R and WinBUGS", please find the description of the course below. If you have any question don't hesitate to contact me. Best regards, Pablo ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ *Three days course in: Bayesian Data
2009 Jul 15
0
FW: problems in resampling time series, block length, trend.test
Hi, I have a time series (say "x") of 13 years showing an evident increase. I want to exclude two observations (the fourth and 10th), so I do: > trend.test(x[-c(4,10)]) where: > x[-c(4,10)] [1] 7 37 79 72 197 385 636 705 700 1500 1900 and I get: Spearman's rank correlation rho data: x[-c(4, 10)] and time(x[-c(4, 10)]) S = 4, p-value < 2.2e-16
2009 Jul 15
0
problems in resampling time series, block length, trend.test
Hi, I have a time series (say "x") of 13 years showing an evident increase. I want to exclude two observations (the fourth and 10th), so I do: > trend.test(x[-c(4,10)]) where: > x[-c(4,10)] [1] 7 37 79 72 197 385 636 705 700 1500 1900 and I get: Spearman's rank correlation rho data: x[-c(4, 10)] and time(x[-c(4, 10)]) S = 4, p-value < 2.2e-16
2008 Aug 11
0
ANNOUNCEMENT: 20% Discount on Books from Chapman & Hall/CRC Press!
ANNOUNCEMENT: 20% Discount on Books from Chapman & Hall/CRC Press! SPECIAL 20% OFF NEW R BOOKS FROM CHAPMAN & HALL/CRC Use discount code 952HW to take advantage of these special offers. Chapman & Hall/CRC is pleased to provide our latest titles on R at a 20% discount. And that's all you will pay, because Chapman & Hall/CRC offers free standard shipping on ALL book
2005 Jul 08
2
time series regression
Hi: I have two time series y(t) and x(t). I want to regress Y on X. Because Y is a time series and may have autocorrelation such as AR(p), so it is not efficient to use OLS directly. The model I am trying to fit is like Y(t)=beta0+beta1*X(t)+rho*Y(t-1)+e(t) e(t) is iid normal random error. Anybody know whether there is a function in R can fit such models? The function can also let me specify