Displaying 1 result from an estimated 1 matches for "lineschang".
Did you mean:
linescan
2008 Sep 17
1
Extracting subsets by factor level?
...author by using table(logs$Author).
Is there an elegant way to extract all subsets of this frame by the Author column - i.e. that returns say a list of
data frames, each containing just the records for a specific value of Author?
Thanks
Rory
>head(logs)
Revision Author Date LinesChanged
1 6 user1 13/11/2007 15:41:53 488
2 11 user1 14/11/2007 09:04:43 3
3 12 user2 16/11/2007 12:26:04 522
4 13 user1 16/11/2007 12:27:55 90
5 14 user3 19/11/2007 09:32:54 159
6 15 user1 21/11/2007 13:38:41 1...