plyr is an R package with tools to solve a variety of problems using the split-apply-combine strategy
I like the plyr syntax. Any time I have to use one of the *apply() commands I end up kicking …
r plyrI have a data frame that looks like this: site date var dil 1 A 7.4 2 2 A 6.5 2 1 A 7.3 3 2 A 7.3 3 1 B 7.1 1 2 B 7.7 2 1 B 7.7 3 2 …
r plyrThis question is about a generic mechanism for converting any collection of non-cyclical homogeneous or heterogeneous data structures into a …
json r dataframe plyr data.tableI have a data.frame where I'd like to remove entire groups if any of their members meets a condition. …
r subset plyrI have a dataset whose headers look like so: PID Time Site Rep Count I want sum the Count by …
r plyr data.tableI have a simulation that has a huge aggregate and combine step right in the middle. I prototyped this process …
performance r plyrI often need to apply a function to each pair of columns in a dataframe/matrix and return the results …
r apply plyrI'm using dlply() with a custom function that averages slopes of lm() fits on data that contain some NA values, …
r plyr lm