"Nelson Castillo" <nelsoneci_at_gmail.com> wrote in news:2accc2ff0805021800p734c640dt179cd273a358a635_at_mail.gmail.com:
> On Sun, Apr 27, 2008 at 10:10 AM, David Winsemius
> <dwinsemius_at_comcast.net> wrote:
>> "Nelson Castillo" <nelsoneci_at_gmail.com> wrote in >> news:2accc2ff0804251655o32686b99j73cf7df37243d08f_at_mail.gmail.com:
You needed a list, not the character vector which colnames returns. I wonder if it would have worked if you had used:
by= as.list(colnames(edom)[2:14])
Using the orignal examples, note the class of the different objects.
> s.wt
var1 var2 weight
1 A B 5 2 C D 2
> colnames(s.wt)[2:3]
[1] "var2" "weight"
> class(colnames(s.wt)[2:3])
[1] "character"
> as.list(colnames(s.wt)[2:3])
[[1]]
[1] "var2"
[[2]]
[1] "weight"
> class(as.list(colnames(s.wt)[2:3]))
[1] "list"
If you sent an un-named list to "by", you end up with column names: Group.1 through Group.13 in the returned dataframe. I think you could have then used:
colnames(edom2)[1:13] <- c("Income",colnames(edom)[3:14])
It may not have been worth the extra trouble, but it serves to emphasize the need for using the proper class for function arguments.
-- David WinsemiusReceived on Sat 03 May 2008 - 18:34:05 GMT
> So, I did the list by hand.
>
> edom2 = with(edom,aggregate(FACT_EXP_CAL_H,
> by=list(Income=VB21,VB17_NEV=VB17_NEV, VB17_LAV=VB17_LAV,
> VB17_EQS=VB17_EQS, VB17_CAL=VB17_CAL, VB17_DEL=VB17_DEL,
> VB17_LIC=VB17_LIC, VB17_HEL=VB17_HEL, VB17_AIR=VB17_AIR,
> VB17_VEN=VB17_VEN, VB17_TVC=VB17_TVC, VB17_PC=VB17_PC,
> VB17_HMI=VB17_HMI), sum))
>
>> nrow(edom2)
>
> [1] 9817
>
> And the row count matches what I did before with Perl :-)
______________________________________________ R-help_at_r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.
Archive maintained by Robert King, hosted by
the discipline of
statistics at the
University of Newcastle,
Australia.
Archive generated by hypermail 2.2.0, at Sat 03 May 2008 - 19:30:37 GMT.
Mailing list information is available at https://stat.ethz.ch/mailman/listinfo/r-help. Please read the posting guide before posting to the list.