When I'm analyzing log files, I seem to do a certain thing over and over, so I think it makes sense to write it as a function, but I'm not sure how.
Here's what my data often looks like:
Person-065441 Male Kitgum Person-075871 2011-10-25 08:28:00 10/25/11 9:51 6.023095 33.48921
Person-073745 Male Kitgum Person-077753 2011-10-28 18:42:00 10/29/11 10:45 6.073526 33.02387
Person-028134 Female Masindi Person-029314 2011-07-25 11:00:00 7/26/11 21:42 4.384704 31.72757
Person-028524 Male Masindi Person-065061 2011-10-14 14:58:00 10/14/11 15:04 4.597734 32.06531
Person-027807 Male Masindi Person-019365 2011-06-18 11:38:00 6/18/11 11:53 4.362200 31.70692
Person-027745 Male Masindi Person-049507 2011-08-21 15:04:00 8/22/11 15:08 4.123896 31.64682
Person-027806 Male Masindi Person-076782 2011-10-17 08:04:00 10/17/11 11:26 4.480627 31.73907
Person-029695 Male Masindi Person-032988 2011-08-18 17:26:00 8/18/11 18:29 4.378191 31.67419
Here's what I do if I want to fractionate the logs by number of queries each PersonID did:
# count queries by ID
queriesbyID<-count(Search_Logs, vars = c("Interviewer_Person_ID"))
queriesbyID<-queriesbyID[!is.na(queriesbyID$Interviewer_Person_ID),]
queriesbyID<-droplevels(queriesbyID)
# separate data into three quadrants by number of queries
queriesbyID<-queriesbyID[order(-queriesbyID$freq),]
mostqueries<-queriesbyID[queriesbyID$freq>=1500,]
modqueries<-queriesbyID[queriesbyID$freq<1500&queriesbyID$freq>=400,]
lowqueries<-queriesbyID[queriesbyID$freq<400,]
# fetch complete details for each query subset
mostqueries_string<-mostqueries$Interviewer_Person_ID
modqueries_string<-modqueries$Interviewer_, Person_ID
lowqueries_string<-lowqueries$Interviewer_Person_ID
mostqueries_details<-Search_Logs[Search_Logs$Interviewer_Person_ID %in% mostqueries_string,]
modqueries_details<-Search_Logs[Search_Logs$Interviewer_Person_ID %in% modqueries_string,]
lowqueries_details<-Search_Logs[Search_Logs$Interviewer_Person_ID %in% lowqueries_string,]
The stuff to be abstracted here is the counting by some categorical variable, splitting into 3 parts (or quartiles or n parts), doing the lookup from the main dataset based on membership in one of the subsets and returning the whole matching row.
I can envision a function that I would call like topqueries<-fractionate(df, by = "PersonID", function = cumsum, part = top) that would return the complete rows from the raw logs that match the queryIDs that did the top 3rd of queries. Hopefully someone will explain to me that I'm just an idiot and should be using ddply like so... but lacking that, I'd like to write the above as a function so I don't have to type the same 10 or so lines over and over each time I want to fractionate by a new categorical variable.
How would I get started writing the above as a function?
dput()or drop a csv onto pastebin, dropbox, etc. I think I just spent more time trying to recreate your data than it will take me to answer your question. – JD Long Nov 13 '11 at 13:52