[R] Time series questions

2012-01-18 Thread kchkchkch
Hi, I am trying to teach myself some time series analysis. I have some time series data on GDP, quarterly, from 1947 to 2011. colnames are "Year" "Quarter" "GDP" and "GDP.deflator" The first problem I have is that 4th quarter 2010 is missing--not even NA, there is no record for Year=2010 and Qua

Re: [R] uniroot function question

2011-12-14 Thread kchkchkch
Heh. Yes, Berend Hasselman wrote > > Shouldn't the line with uniroot be (why try as function?) > > sol = uniroot(fcn, lower = p1, upper = 1) > > Before the line with for(i in 1:n) insert the following > > fcn = function(p2) p1*f(p1) + (.20/5.66)*(exp(5.66*(p2 - p0)) - > exp(5.66*(p1 - p0)))

[R] uniroot function question

2011-12-14 Thread kchkchkch
I have one equation, two unknowns, so I am trying to build the solution set by running through possible values for one unknown, and then using uniroot to solve for the accompanying second solution, then graphing the two vectors. p0 = .36 f = function(x) 0.29 * exp(5.66*(x - p0)) f.integral = integ