search for: annual

Displaying 20 results from an estimated 639 matches for "annual".

2009 Aug 01
2
xyplot: superpose 2 time series with different time intervals
I could use some advice regarding xyplot. I've got 2 time series. Both cover approximately the same period of time (ie, 1940 to 2009). But one series has annual data and the other has monthly data. One refers to university enrollment; the other to unemployment rates. Both are currently in the same data frame. I'd like to use the monthly times series as a light grayscale background for a plot of the annual time series, showing both series as type &quot...
2009 Jul 31
1
superpose 2 time series with different time intervals
I could use some advice. I've got 2 time series. Both cover approximately the same period of time (ie, 1940 to 2009). But one series has annual data and the other has monthly data. One refers to university enrollment; the other to unemployment rates. Both are currently in the same data frame. I'd like to use the monthly times series as a light grayscale background for a plot of the annual time series, showing both series as type &quot...
2017 Sep 01
3
How to use getSymbols() to get annual data
Dear Sir/Madam, How to use getSymbols() to get annual data? For example, I need the annual stock price of APPLE from the year 2000 to 2016. How to write the command? I only know how to get the daily data. It is: getSymbols("AAPL",from="2000-01-01",to="2016-12-31") Thank you very much. Have a good week! Best regard...
2017 Oct 06
2
Time series: xts/zoo object at annual (yearly) frequency
Hi, I'd like to make a time series at an annual frequency. > a<-xts(x=c(2,4,5), order.by=c("1991","1992","1993")) Error in xts(x = c(2, 4, 5), order.by = c("1991", "1992", "1993")) : order.by requires an appropriate time-based object > a<-xts(x=c(2,4,5), order.by=1991:199...
2007 Nov 17
2
Getting Annual (Conditional) Averages
Hello, I'm very new to R, and so my question is simple. I have data record with 80 years of daily temperatures in one long string. The dates are also recorded, in YYMMDD format. I'd like to learn an elegant simple way to pull out the annual averages. (Obviously, every 4th year has 366 days.) I know I can set up a formal loop to create annual records and then average. But R seems to have such neat methods, is there some better way to do this? Lucia [[alternative HTML version deleted]]
2004 Sep 22
5
block statistics with POSIX classes
I have a monthly price index series x, the related return series y = diff(log(x)) and a POSIXlt date-time variable dp. I would like to apply annual blocks to compute for example annual block maxima and mean of y. When studying the POSIX classes, in the first stage of the learning curve, I computed the maximum drawdown of x: > mdd <- maxdrawdown(x) > max.dd <- mdd$maxdrawdown > from <- as.character(dp[mdd$from]) > to <...
2005 Feb 10
5
Annual cumulative sums from time series
...language), please see www.hydrology.uni-kiel.de/~schorsch/statistik/statistik_datenauswertung.pdf (pages 40-52) The dataset is: www.hydrology.uni-kiel.de/~schorsch/statistik/erle_stat.csv It contains a 10 year dataset. So far for introduction, now comes the problem: we often need cumulative *annual* sums (sunshine, precipitation), i.e. the sum must reset to 0 at the beginning of the year. I know of cumsum(), but I do not now how to split the dataset automagically into annual pieces so I can cumsum() every year separately. I have the strong hope that the solution is one of these one-liners w...
2005 Sep 01
1
Strange build message: request help w/resolving
...than Shackles <nshackles@constellagroup.com>, ported from SAS code written by Renee Jaramillo <rjaramillo@constellagroup.com> Description: The RAGG package performs aggregation of gridded CMAQ model data. The pacakge reads event data from Models3 IO-API files and outputs the aggregated annual data in Models3 IO-API file(s). Aggegation came about as a means to provide CMAQ-based estimates of total annual deposition and average annual concentrations. CMAQ is an episodic model requiring detailed meteorological and emissions inputs. Because of the extensive inputs and the time required to...
2009 Feb 17
2
annual maximum value
hi everyone! hope you can help me here. i am a new R user. what i am trying to do is to find the maximum annual discharge from a daily record. i have a data.frame which includes date and the discharge. somewhat like this.. 10/1/1989 2410 10/2/1989 2460 10/3/1989 2890 ... ... ... 12/31/2005 5730 i have been browsing through the archives and fount out about the aggregate function and th...
2012 Nov 09
2
Creating yyyymm regexp strings on the fly for aggregation.
...ike so: > splitIt(1:12, 2) $`0` [1] 1 2 3 4 5 6 $`1` [1] 7 8 9 10 11 12 Or > splitIt(1:12, 4) $`0` [1] 1 2 3 $`1` [1] 4 5 6 $`2` [1] 7 8 9 $`3` [1] 10 11 12 I am splitting 12 months into 6-month or quarterly chunks. I can also use the function to create monthly or segments or one big annual segment. Here is a function that I developed: groupingStrings<-function(yrs, numSplits) { unlist(lapply(yrs, function(x){ paste(x,formatC(numSplits, width = 2, flag = 0), collapse = "|", sep = "")})) } Here is an example of running the function: groupingStrings(2004:2006,...
2013 Apr 05
2
convert annual data to quarterly frequency
Hi, I was wondering if there is a package I can use to convert my 22 annual observations to quarterly time series so that I will have 88 observations. Also, will there be any harm in doing so? will I loose any important data specific info? I want to run VARs in levels using TY method. Due to small sample, i will probably use a bootstrap method. Thanks! [[alternative...
2010 Apr 24
2
barplot - offsetting individual bars
Hello, I'm trying currently using barplot to summarize precipitation data. So far I've compiled total annual snow and rain accumulation in a table (attached). I've been successful at plotting it using the following code: fig=barplot(t(Annual_Precip_table), horiz=TRUE, space=0, col=c("grey70", "white"), axes=FALSE) . . The result is a stacked barplot with total annual rain represe...
2020 Oct 20
1
Dibujar un gráfico con 4 terms - ggeffects + plot
...quot;, "sum.vs.win") ) plot(df) Luego he arreglado el gráfico usando: df <- ggpredict(m.glob.pre.anu , terms = c("pre", "area_m2", "sum.vs.win") ) plot(df)+ labs(title = "Predicted number of annuals" # falla al posar 4 terms en el df ,x = "MAP" ,y = "Proportion of annuals" ) + scale_x_continuous(breaks = c(-2,0,2) , labels= etiquetas ) + labs(color="Area") Pero me inte...
2007 Oct 26
2
how do i find the annual maximun within several years?
dear kind helper, i would like to know how to find the annual maximun for a table that basicly looks like this: date time measurement1 measurement2 measurement3 mm/dd/yyyy hh:mm:ss m1 m2 m3 there are about 9000 measurements for each year, which makes it quite large... i already tried to subset all rows for a year, to find the maximum within these choose...
2023 Apr 14
0
Geek Annual based service G-SQUAD/APR14/10240051
...eipt ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? ** *~**GEEK-SQUAD~* Hi Geek-Squad User, We hope you're enjoying our services! We are glad to inform you that your annual plan with us has been successfully renewed. Your Geek Secure service plan G-SQUAD/APR14/10240051 is now valid till 14th Apr 2024. *Service-Desk: 855 250 8732* *Details:* Geek 360 Subscription (Annual services for 03 devices) *Total:* USD 246.17 Amount charged will...
2006 Sep 06
3
conditional form element
I have a button option in my form with 2 options. User may only select one of the options. Based on the option they choose I want an associated select list to appear. I''m guessing this can only be done with javascript or can it be done with just Ruby ? TIA Stuart --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google
2005 Sep 25
12
Browsercam.com Annual Membership
...sing funadable.org to purchase a yearly membership as a group. A year long membership at browsercam.com costs $480.00. This gives us 25 user accounts. I am proposing that 25 people throw in $19.20 for their 1/25th share of the membership cost. Once I have raised $479.40 I will purchase the annual membership and setup an account for all the participants. Keep in mind that the daily price for one user is $19.95, which is more than what you will need to pay for a year under this plan. If anyone is interested, the fundable.org group is setup at: https://www.fundable.org/groupactions/gro...
2010 Jul 05
2
Can anybody help me understand AIC and BIC and devise a new metric?
...nybody please help me understand AIC and BIC and especially why do they make sense? Furthermore, I am trying to devise a new metric related to the model selection in the financial asset management industry. As you know the industry uses Sharpe Ratio as the main performance benchmark, which is the annualized mean of returns divided by the annualized standard deviation of returns. In model selection, we would like to choose a model that yields the highest Sharpe Ratio. However, the more parameters you use, the higher Sharpe Ratio you might potentially get, and the higher risk that your model is o...
2007 Nov 13
2
finding the annual maximun within several years
...9 314.505 10 11/05/1978 01:00:00 24.981 2.592 310.464 11 11/05/1978 02:00:00 19.066 2.528 310.464 12 11/05/1978 03:00:00 26.198 2.605 305.749 13 06/29/1979 19:00:00 78.829 3.179 306.199 14 06/29/1979 20:00:00 92.221 3.325 306.199 15 06/29/1979 21:00:00 72.364 3.108 303.049 i need to find the annual maximun for each year in V3, V4 and V5 So that the result would be a table like this: V1 V4 1 01/01/1975 3.691 2 02/24/1976 2.623 3 10/18/1977 2.559 . . .and so on. i hope you can help me with this, thank you in advance, doerte --
2008 May 22
0
[LLVMdev] Second Annual LLVM Developers' Meeting
Second Annual LLVM Developers' Meeting August 1, 2008 - Apple Inc. Campus, Cupertino, California, U.S.A. The second annual LLVM Developers' Meeting will be held this year at Apple Inc.'s main campus in Cupertino, California: http://llvm.org/devmtg Like last year's inaugural meeting, the m...