Apologies is this is something a more seasoned R user would know, but I just came across this and wanted to ask about proper usage.
It appears to be possible to classify ranges for variables by using as.factor. So, I could group observations into a range. For example, if I were looking at visits by user, it looks that I could write an if/then statement to bin the users by the range of visits they had, then get summary statistics based on the group.
Here is the link where I learned about this: http://programming-r-pro-bro.blogspot.com/2011/10/modelling-with-r-part-2.html
Now, while this function looks easier than grouping data by using plyr and ddply, it does not look to be powerful enough to break the variable into X number of bins (for example 10 for a decile) - You would have to do that yourself.
This leads to my question - Is one better than the other for grouping data, or are there just many ways to tackle grouping like this?
Thanks
as.factorsimply converts a character vector into a factor - it does no analysis by itself.ddplyis one of the powerful tools in the suite provided byplyr. Comparingas.factortoddplyis a bit like comparing a ball bearing to a gearbox. – Andrie Oct 31 '11 at 17:40?cut. You might also want to take a look at stackoverflow.com/questions/5963269/… With a small example of what you want to do, people will more easily chime in and show you some easier ways to do it.cut()is one of them. – Joris Meys Oct 31 '11 at 17:42