Re: [R] periodicity

2019-01-30 Thread Bert Gunter
All: https://rdrr.io/ and Rdocumentation.org Seems to be good places for finding info on specific R functions. -- Bert Bert Gunter "The trouble with having an open mind is that people keep coming along and sticking things into it." -- Opus (aka Berkeley Breathed in his "Bloom County" comic st

Re: [R] periodicity

2019-01-30 Thread William Dunlap via R-help
Searching for 'periodicity' on rseek.org gives, several items from the top, *periodicity* function | *R* Documentation https://www.rdocumentation.org/packages/xts/.../0.11.../*periodicity* Estimate the *periodicity* o

Re: [R] periodicity

2019-01-30 Thread Marc Schwartz via R-help
Hi, A quick Google search using "R periodicity" turned up the 'xts' package on CRAN: https://cran.r-project.org/web/packages/xts/index.html Regards, Marc Schwartz > On Jan 30, 2019, at 2:24 PM, Sarah Goslee wrote: > > Hi Nick, > > A quick look on rs

Re: [R] periodicity

2019-01-30 Thread Bert Gunter
Ummm... ??? A google search on "R function periodicity" immediately brought up the xts package and others. and RStudio is **NOT** R. It's an IDE for R (and there are others). Bert Gunter "The trouble with having an open mind is that people keep coming along and sticking things into it." -- Opus

Re: [R] periodicity

2019-01-30 Thread Sarah Goslee
Hi Nick, A quick look on rseek.org didn't turn anything up. It would help to know what websites you're referring to - they might be loading custom code. Sarah On Wed, Jan 30, 2019 at 2:17 PM Nick Wray via R-help wrote: > > I've found references on websites to an R function "periodicity", but th

Re: [R] periodicity

2019-01-30 Thread William Dunlap via R-help
Search with https://rseek.org Bill Dunlap TIBCO Software wdunlap tibco.com On Wed, Jan 30, 2019 at 11:17 AM Nick Wray via R-help wrote: > I've found references on websites to an R function "periodicity", but > there's no such built-in function as far as I can see in R studio. I can't > find r

[R] periodicity

2019-01-30 Thread Nick Wray via R-help
I've found references on websites to an R function "periodicity", but there's no such built-in function as far as I can see in R studio. I can't find reference to it being part of any package either. Can anyone help with this? Thanks, Nick Wray [[alternative HTML version deleted]] ___

Re: [R] Periodicity of Weekly Zoo

2012-12-03 Thread Gabor Grothendieck
On Mon, Dec 3, 2012 at 8:30 PM, Andrew Freedman wrote: > Hi List, > > I have weekly sales observations for several products drawn via ODBC. > Source data is available at > https://www.dropbox.com/s/78vxae5ic8tnutf/asr.csv. > > This is retail sales data, so will contain seasonality and trend > info

[R] Periodicity of Weekly Zoo

2012-12-03 Thread Andrew Freedman
Hi List, I have weekly sales observations for several products drawn via ODBC. Source data is available at https://www.dropbox.com/s/78vxae5ic8tnutf/asr.csv. This is retail sales data, so will contain seasonality and trend information. I expect to see 52 or 53 observations per year, each observat

Re: [R] periodicity validation

2008-09-21 Thread stephen sefick
alright this is what you want to do. install.packages("fields", dependencies=TRUE) tim.colors is in this package and it has a blue to red color scheme- blue being the lowest and red being the highest. This color scheme makes sense to me and is a common thing that a people (read engineers) familar

Re: [R] periodicity validation

2008-09-11 Thread Jeff Ryan
Take a look at the xts package. ?periodicity HTH Jeff yk-4 wrote: > > There is a series of data contains time in fixed step and energy > varying with time, how to test its periodicity?In R, it seems there is > no direct tools since I have search the R manual with periodic and I > have not foun

Re: [R] periodicity validation

2008-09-11 Thread stephen sefick
all of the functions that I listed are time series tools for looking at what I think you want. this can be done you just have to understand the methodology. So, look at some of the things that I suggested, If these don't help then I don't understand what you want, and it is necissary for you to

Re: [R] periodicity validation

2008-09-10 Thread yk
The data I mentioned above is oscilating vs time,but there are not obersevable fixed cycle if I just plot this data. How to get the average cycle,or the most probable range of cycle with statistical methods? I don't know how to achieve it by R, is there any command? On Sep 11, 10:52 am, "stephen

Re: [R] periodicity validation

2008-09-10 Thread stephen sefick
?spectrum ?acf ?ccf library(wmtsa) ?wavCWT library(sowas) ?wsp you could also look at lagged plots to look for periodicity. if you elaborate on the problem and include executable sample code you will probably recieve more help. On Wed, Sep 10, 2008 at 10:02 PM, yk <[EMAIL PROTECTED]> wrote: > The

[R] periodicity validation

2008-09-10 Thread yk
There is a series of data contains time in fixed step and energy varying with time, how to test its periodicity?In R, it seems there is no direct tools since I have search the R manual with periodic and I have not found any related topic. Thanks a lot __