Skip to content

question about the aggregate function with respect to order of levels of grouping elements

5 messages · tom soyer, Gabor Grothendieck, jim holtman

#
This does look strange.  Note that aggregate.zoo in the zoo package
would work here:
Jan 2001    Feb 2001    Mar 2001    Apr 2001    May 2001    Jun 2001
 4.43610085  0.49842227  7.52139932  1.47917343 10.64459923 -1.22530586
   Jul 2001    Aug 2001    Sep 2001    Oct 2001    Nov 2001    Dec 2001
 8.19563685  1.57626974  1.28842871  2.50540074  0.71156951  0.54118342
   Jan 2002    Feb 2002    Mar 2002    Apr 2002    May 2002    Jun 2002
-0.41292840 -2.41301496  3.23783551  0.63914807 -1.46357402  2.91651492
   Jul 2002    Aug 2002    Sep 2002    Oct 2002    Nov 2002    Dec 2002
 2.17263290 -2.30981022 -9.60701788  1.16504368 -3.07038254  1.38281927
   Jan 2003    Feb 2003    Mar 2003    Apr 2003    May 2003    Jun 2003
 4.48761479  2.42455090 -0.03743888  1.11223001 -4.07988016 -1.15116293
   Jul 2003    Aug 2003    Sep 2003    Oct 2003    Nov 2003    Dec 2003
-7.15292576 -2.34231702 -0.48132751 11.74252191  2.51063034 -4.35801058
On Dec 16, 2007 9:23 AM, tom soyer <tom.soyer at gmail.com> wrote:
#
In fact, even ordinary aggegate works ok with zoo's as.yearmon:
dts           x
1  Jan 2001  4.43610085
2  Feb 2001  0.49842227
3  Mar 2001  7.52139932
4  Apr 2001  1.47917343
5  May 2001 10.64459923
6  Jun 2001 -1.22530586
7  Jul 2001  8.19563685
8  Aug 2001  1.57626974
9  Sep 2001  1.28842871
10 Oct 2001  2.50540074
11 Nov 2001  0.71156951
12 Dec 2001  0.54118342
13 Jan 2002 -0.41292840
14 Feb 2002 -2.41301496
15 Mar 2002  3.23783551
16 Apr 2002  0.63914807
17 May 2002 -1.46357402
18 Jun 2002  2.91651492
19 Jul 2002  2.17263290
20 Aug 2002 -2.30981022
21 Sep 2002 -9.60701788
22 Oct 2002  1.16504368
23 Nov 2002 -3.07038254
24 Dec 2002  1.38281927
25 Jan 2003  4.48761479
26 Feb 2003  2.42455090
27 Mar 2003 -0.03743888
28 Apr 2003  1.11223001
29 May 2003 -4.07988016
30 Jun 2003 -1.15116293
31 Jul 2003 -7.15292576
32 Aug 2003 -2.34231702
33 Sep 2003 -0.48132751
34 Oct 2003 11.74252191
35 Nov 2003  2.51063034
36 Dec 2003 -4.35801058
On Dec 16, 2007 9:50 AM, Gabor Grothendieck <ggrothendieck at gmail.com> wrote:
#
What version of R are you using?  Here is the output I got with 2.6.1:
[1] "Jan" "Feb" "Mar" "Apr" "May" "Jun" "Jul" "Aug" "Sep" "Oct" "Nov" "Dec"
[1] "Jan" "Feb" "Mar" "Apr" "May" "Jun" "Jul" "Aug" "Sep" "Oct" "Nov" "Dec"
[1] "Jan" "Feb" "Mar" "Apr" "May" "Jun" "Jul" "Aug" "Sep" "Oct" "Nov" "Dec"
Order seems to be correct.
On Dec 16, 2007 9:23 AM, tom soyer <tom.soyer at gmail.com> wrote: