Tagged Questions
plyr is an R package with tools to solve a variety of problems using the strategy of split, apply and combine
16
votes
5answers
2k views
R: speeding up “group by” operations
I have a simulation that has a huge aggregate and combine step right in the middle. I prototyped this process using plyr's ddply() function which works great for a huge percentage of my needs. But I ...
12
votes
1answer
213 views
Is there an implementation of Hadley's ddply for python?
I find Hadley's plyr package for R extremely helpful, its a great DSL for transforming data. The problem that is solves is so common, that I face it other use cases, when not manipulating data in R, ...
11
votes
1answer
273 views
Can `ddply` (or similar) do a sliding window?
Something like
sliding = function(df, n, f)
ldply(1:(nrow(df) - n + 1), function(k)
f(df[k:(k + n - 1), ])
)
That would be used like
> df
n a
1 1 0.8021891
2 2 ...
11
votes
4answers
307 views
joining aggregate info back to a data frame… in an R way
One of the design patterns I use over and over is performing a "group by" or "split, apply, combine (SAC)" on a data frame and then joining the aggregated data back to the original data. This is ...
10
votes
2answers
365 views
How to merge two data frames on common columns in R with sum of others?
R Version 2.11.1 32-bit on Windows 7
I got two data sets: data_A and data_B:
data_A
USER_A USER_B ACTION
1 11 0.3
1 13 0.25
1 16 0.63
1 17 0.26
2 11 0.14
2 14 0.28
data_B
USER_A USER_B ACTION
1 ...
8
votes
4answers
325 views
Is there a R function that applies a function to each pair of columns?
I often need to apply a function to each pair of columns in a dataframe/matrix and return the results in a matrix. Now I always write a loop to do this. For instance, to make a matrix containing the ...
8
votes
5answers
2k views
How to better create stacked bar graphs with multiple variables from ggplot2?
I often have to make stacked barplots to compare variables, and because I do all my stats in R, I prefer to do all my graphics in R with ggplot2. I would like to learn how to do two things:
First, I ...
7
votes
5answers
169 views
using predict with a list of lm() objects
I have data which I regularly run regressions on. Each "chunk" of data gets fit a different regression. Each state, for example, might have a different function that explains the dependent value. This ...
7
votes
2answers
300 views
Fastest Tall-Wide pivoting in R
I am dealing with a simple table of the form
date variable value
1970-01-01 V1 0.434
1970-01-01 V2 12.12
1970-01-01 V3 921.1
1970-01-02 V1 -1.10
...
7
votes
3answers
264 views
l_ply: how to pass the list's name attribute into the function?
Say I have an R list like this:
> summary(data.list)
Length Class Mode
aug9104AP 18 data.frame list
Aug17-10_acon_7pt_dil_series_01 ...
7
votes
1answer
1k views
doing a plyr operation on every row of a data frame in R
I like the plyr syntax. Any time I have to use one of the *apply() commands I end up kicking the dog and going on a 3 day bender. So for the sake of my dog and my liver, what's concise syntax for ...
6
votes
6answers
263 views
Efficiently locate group-wise constant columns in a data frame
How can I efficiently extract group-wise constant columns from a data frame? I've included an plyr implementation below to make precise what I'm trying to do, but it's slow. How can I do it as ...
6
votes
3answers
145 views
Multiple density graphs different groups (based on factor level) using plyr
I am trying to output multiple density plot from a function, by dividing the dataframe into pieces such that separate density for each level of a factor for corresponding yvar.
set.seed(1234)
Aa = ...
6
votes
2answers
167 views
What does the dot mean in R – personal preference, naming convention or more?
I am (probably) NOT referring to the "all other variables" meaning like var1~. here.
I was pointed to plyr once again and looked into mlplyand wondered why parameters are defined with leading dot ...
6
votes
5answers
473 views
R: aggregate a dataframe on a given colum and display another column
I have a dataframe in R of the following form:
> head(data)
Group Score Info
1 1 1 a
2 1 2 b
3 1 3 c
4 2 4 d
5 2 3 e
6 2 1 f
I ...
6
votes
2answers
459 views
R: converting each row of a data frame into a list item
I have a number of operations on data frames which I would like to speed up using mclapply() or other lapply() like functions. One of the easiest ways for me to wrestle with this is to make each row ...
5
votes
2answers
104 views
Elegant way to solve ddply task with aggregate (hoping for better performance)
I would like to aggregate a data.frame by an identifier variable called ensg. The data frame looks like this:
chromosome probeset ensg symbol XXA_00 XXA_36 XXB_00
1 ...
5
votes
3answers
209 views
SQL loop to read, then write data to file
I have a dataset that has 57 million rows and 23 columns. There is a column with species names of different birds (about 2000 unique names), and I would like to pull out two columns of data (latitude, ...
5
votes
3answers
164 views
Am I using plyr right? I seem to be using way too much memory
I have the following, somewhat large dataset:
> dim(dset)
[1] 422105 25
> class(dset)
[1] "data.frame"
>
Without doing anything, the R process seems to take about 1GB of RAM.
I ...
5
votes
3answers
93 views
Paste columns of two data frames
I find myself wanting to sometimes paste together columns from different dataframes (tables, matrices or whatever). For example I have a table of means and a table of stan devs. I want the two ...
5
votes
3answers
236 views
Mend reshape-based habits with plyr: melt/cast vs. ddply
I'm kind-of used to do melt and cast all the time, and this time I'm looking for neat one-liner.
require(reshape)
# first I melt some data:
m <- melt(mtcars, id.vars = c("cyl", "am"), measure.vars ...
5
votes
3answers
207 views
ddply with lm() function
Hi guys how can I use ddply function for linear model:
x1 <- c(1:10, 1:10)
x2 <- c(1:5, 1:5, 1:5, 1:5)
x3 <- c(rep(1,5), rep(2,5), rep(1,5), rep(2,5))
set.seed(123)
y <- rnorm(20, 10, 3)
...
5
votes
5answers
183 views
quick/elegant way to construct mean/variance summary table
I can achieve this task, but I feel like there must be a "best" (slickest, most compact, clearest-code, fastest?) way of doing it and have not figured it out so far ...
For a specified set of ...
5
votes
4answers
200 views
How to improve this Algorithm?
R Version 2.11.1 32-bit on Windows 7
(Thanks for the answers! I finally use the package plyr and it really helps!)
I get the data train.txt as below:
USER_A USER_B ACTION
1 7 0
1 ...
5
votes
1answer
638 views
doMC vs doSNOW vs doSMP vs doMPI: why aren't the various parallel backends for 'foreach' functionally equivalent?
I've got a few test pieces of code that I've been running on various machines, always with the same results. I thought the philosophy behind the various do... packages was that they could be used ...
5
votes
3answers
591 views
Apply a list of n functions to each row of a dataframe?
I have a list of functions
funs <- list(fn1 = function(x) x^2,
fn2 = function(x) x^3,
fn3 = function(x) sin(x),
fn4 = function(x) x+1)
#in ...
5
votes
3answers
356 views
How do I use plyr to number rows?
Basically I want an autoincremented id column based on my cohorts - in this case .(kmer, cvCut)
> myDataFrame
size kmer cvCut cumsum
1 8132 23 10 8132
10000 778 23 ...
5
votes
6answers
2k views
for each group summarise means for all variables in dataframe (ddply? split?)
A week ago I would have done this manually: subset dataframe by group to new dataframes. For each dataframe compute means for each variables, then rbind. very clunky ...
Now i have learned about ...
5
votes
2answers
519 views
renaming the output column with the plyr package in R
Hadley turned me on to the plyr package and I find myself using it all the time to do 'group by' sort of stuff. But I find myself having to always rename the resulting columns since they default to ...
4
votes
1answer
125 views
R ggplot and facet grid: how to control x-axis breaks
I am trying to plot the change in a time series for each calendar year using ggplot and I am having problems with the fine control of the x-axis. If I do not use scale="free_x" then I end up with an ...
4
votes
1answer
113 views
Using plyr, doMC, and summarise() with very big dataset?
I have a fairly large dataset (~1.4m rows) that I'm doing some splitting and summarizing on. The whole thing takes a while to run, and my final application depends on frequent running, so my thought ...
4
votes
2answers
103 views
How to select the first and last row within a grouping variable in a data frame?
How can i select the first and last row for each unique id in the following dataframe?
id d gr mm area
15 1 2 3.40 1
15 1 1 ...
4
votes
4answers
137 views
R: calculate variance for data$V1 for each different value in data$V2
I have data frame looking like this
V1 V2
.. 1
.. 2
.. 1
.. 3
etc.
For each distinct V2 value i would like to calculate variance of data in V1. I have just started my adventure with R, ...
4
votes
3answers
95 views
Find Number of Occurences for Maximum Value for each unique item in R
I am trying to get this working by some simple method.
Say, there is a table for Cars Sold and with the name of the Car Model and the Price the Car was sold for
Eg.,
CarName Price
...
4
votes
1answer
58 views
efficient string value count in large data.frame
I have a large dataframe (~ 600K rows) with a string-value column (link)
doc_id,link
1,http://example.com
1,http://example.com
2,http://test1.net
2,http://test2.net
2,http://test5.net
...
4
votes
1answer
135 views
Using Dates with the data.table package
I recently discovered the data.table package and was now wondering whether or not I should replace some of my plyr-code. To summarize, I really like plyr and I basically achieved everything I wanted. ...
4
votes
2answers
155 views
zipping lists in R
As a guideline I prefer apply functions on elements of a list using lapply or *ply (from plyr) rather than explicitly iterating through them. However, this works well when I have to process one list ...
4
votes
1answer
121 views
continuous subgroups with ddply
I would like to summarize my experimental data every time a condition changes.
For example:
> df=data.frame(tos=1:9, temp=rep(c(25,50,25), each=3), response=c(3.2,3.3,3.3, 6.5, 6.5, 6.5, ...
4
votes
2answers
621 views
Making a better summary statistics table with plyr in R
Every time I get a new data set the first thing I do is check out the summary statistics. The summary function does a pretty good job, but I'm frequently interested in standard deviations, quantiles ...
4
votes
2answers
201 views
How to rewrite a “sapply” command to increase performance?
I have a data.frame named "d" of ~1,300,000 lines and 4 columns and another data.frame named "gc" of ~12,000 lines and 2 columns (but see the smaller example below).
d <- data.frame( ...
4
votes
2answers
593 views
How can I generate by-group summary statistics if my grouping variable is a factor?
Suppose I wanted to get some summary statistics on the dataset mtcars (part of base R version 2.12.1).
Below, I group the cars according to the number of engine cylinders they have and take the ...
4
votes
1answer
306 views
How to use string variables to create variables list for ddply?
Using R's builtin ToothGrowth example dataset, this works:
ddply(ToothGrowth, .(supp,dose), function(df) mean(df$len))
But I would like to have the subsetting factors be variables, something like
...
3
votes
1answer
84 views
ddply: how to include a character vector in result
sorry, for the cryptic title i didn't find any better summary for my problem. So here's my problem: i have a dataframe and want to make diff() over groups which works fine:
df <- data.frame (name ...
3
votes
2answers
94 views
Analog of 'ave' in plyr?
R's ave() function is way more useful than its name suggests - it's basically a version of tapply() that lets you return a vector the same length as the input, and slots those values back into the ...
3
votes
2answers
119 views
Merging .csv files with R
I have a bunch of .csv files, but to make an easy example let's say I have just 3, the files have 3 variables: date, ID, and price. I would like to merge by date, so if one my current files is:
date ...
3
votes
3answers
109 views
Cumulative sums over run lengths. Can this loop be vectorized?
I have a data frame on which I calculate a run length encoding for a specific column. The values of the column, dir, are either -1, 0, or 1.
dir.rle <- rle(df$dir)
I then take the run lengths and ...
3
votes
1answer
82 views
Using as.factor rather than plyr and ddply to group variables in R?
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 ...
3
votes
1answer
69 views
coerce a multiple output in a new dataframe using ddply
I have this function:
> λ.est <- function(x){
mle.optim <- mle2(paretoNLL,start=list(λ=-0.7),data=list(x=x),trace=TRUE)
return(summary(mle.optim)@coef[1,1:4])
...
3
votes
1answer
262 views
Grouping on multiple variables in R
I'm a power excel pivot table user who is forcing himself to learn R. I know exactly how to do this analysis in excel, but can't figure out the right way to code this in R.
I'm trying to group ...
3
votes
3answers
170 views
Combining split() and cumsum()
I am trying to produce stats for cumulative goals by season by a particular soccer player. I have used the cut function to obtain the season from the game dates. I have data which corresponds to this ...