This is a really simple problem, but I cannot figure out how to script it. I cannot move forward until I figure it out. I'm really new to R and to programming, and I'm going through several introductory manuals, but haven't found anything for this specific problem yet.
Generally, here is the issue. Let's say I have a data frame called x that looks like:
a b c
1995 1 5
1995 2 7
1995 3 9
1996 1 2
1997 2 4
1997 3 5
1997 4 7
1998 1 8
There are multiple entries for some of the years in column a (i.e. 1995 appears 3 times), when really I just want one entry for each year. If I try to plot column a against column c, I will end up with multiple points for each date, but that is not helpful. I don't care about column b, but I want to sum entries for column c for each year, such that I end up with a data frame with one entry for each year. Given the above data, a resulting data frame would look like:
a c
1995 21
1996 2
1997 16
1998 8
Any ideas? This would allow me to plot column a against column c and end up with a useful way of seeing how the # of c varies from year to year.
c. Remember thatcis a function for creating vectors. – csgillespie Mar 5 '11 at 18:01c = df$cwithout thinking. – csgillespie Mar 5 '11 at 18:07cobject in the global environment doesn't mask thecfunction in the base package, so it's not actually a problem. It could be confusing, though, so is best avoided, as @csgillespie suggests. – Aaron Mar 5 '11 at 19:52