-
There seems to be a bug in a R package n …
grupos para conocer personas en facebook There seems to be a bug in a R package named pgam:periodogram(). The function intensity happened to have two cos. One of them should be sin. Here is the correct version. function (w, x) { n
-
R commands to explore time series data …
http://sourcingfactory.com/?bankispaniy=nom-site-rencontre&6bf=f5 R commands to explore time series data ts(data) # create time series objects time(ts.data) # returns the time diff(ts.data, lag=1) # difference at the specified lag lag.plot(ts.data, 9, do.lines=FALSE) # plot with specified lags plot(stl(ts.data, “per”)) # decomposition of time series data spec.pgram(ts.data, spans=c(3,3), log=”no”) # non-parametric spectral analysis spec.ar(ts.data, spans=c(3,3), log=”no”) # parametric estimation […]