[R] Is this a bug or am I making a mistake?

Walter Anderson wandrson01 at gmail.com
Mon Jan 6 18:06:54 CET 2014


I have a data frame that I am extracting some records from and noticed 
the following issue

I originally used tmp <- subset(dd, dd$EVYEAR==2012 & dd$EVMONTH=='02')

and noticed that I wasn't ending up with all of the records I should 
have; however, when I used

tmp <- dd[dd$EVYEAR==2012 & dd$EVMONTH=='02',]

I did get all of the records I should have.

I thought the two forms were equivalent, am I mistaken?



More information about the R-help mailing list