The ddply tag has no wiki summary.
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 ...
11
votes
1answer
289 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
267 views
Object not found error with ddply inside a function
This has really challenged my ability to debug R code.
I want to use ddply() to apply the same functions to different columns that are sequentially named; eg. a, b, c. To do this I intend to ...
11
votes
4answers
326 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 ...
7
votes
3answers
456 views
Loops to create new variables in ddply
I am using ddply to aggregate and summarize data frame variables, and I am interested in looping through my data frame's list to create the new variables.
new.data <- ddply(old.data,
...
6
votes
2answers
137 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 ...
6
votes
5answers
454 views
how to speed up this R code
I have a data.frame (link to file) with 18 columns and 11520 rows that I transform like this:
library(plyr)
df.median<-ddply(data, .(groupname,starttime,fPhase,fCycle),
...
5
votes
2answers
157 views
R - How to ddply without sorting
I use the following code to summarize my data, grouped by Compound, Replicate and Mass.
summaryDataFrame <- ddply(reviewDataFrame, .(Compound, Replicate, Mass),
.fun = ...
4
votes
1answer
93 views
How can I use ddply with varying .variables?
I use ddply to summarize some data.frameby various categories, like this:
# with both group and size being factors / categorical
split.df <- ddply(mydata,.(group,size),summarize,
...
4
votes
2answers
69 views
How to elegantly choose and apply a calibration function, maybe using ddply?
I'm measuring many different chemical compounds, each of which has a different calibration curve, using a single instrument. I'd like to apply the correct calibration curve, based on the name of the ...
4
votes
2answers
262 views
ddply aggregated column names
I am using ddply to aggregate my data but haven't found an elegant way to assign column names to the output data frame.
At the moment I am doing this:
agg_data <- ddply(raw_data, .(id, date, ...
4
votes
2answers
685 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 ...
3
votes
1answer
99 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
81 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
305 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
2answers
176 views
Slower ddply when .parallel=TRUE on Mac OS X Version 10.6.7
I am trying to get ddply to run in parallel on my mac. The code I've used is as follows:
library(doMC)
library(ggplot2) # for the purposes of getting the baseball data.frame
registerDoMC(2)
> ...
3
votes
3answers
331 views
Simple working example of ddply() in parallel on Windows
I've been searching around for a simple working example of using ddply() in parallel. I've installed the "foreach" package, but when I call ddply( .parallel = TRUE) I get a warning that "No parallel ...
3
votes
2answers
156 views
ddply and spaces in quoted variables
Is it possible to use spaces in ddply?
I'm using data from a spreadsheet with a lot of spaces in column names and i would like to keep those names because later on I want to export this data with the ...
3
votes
2answers
601 views
How to speed up summarise and ddply?
I have a data frame with 2 million rows, and 15 columns. I want to group by 3 of these columns with ddply (all 3 are factors, and there are 780,000 unique combinations of these factors), and get the ...
2
votes
2answers
121 views
Aggregate in R by week taking long time
I must be doing something wrong because this function is not finishing.
I am trying to aggregate some data by week. The data is broken up into id and weeknumber. I'd like the result to have the id's ...
2
votes
1answer
221 views
R, plyr, with a complex function
I have the following dataset (CEU):
group x y
1 -23 100
1 -0.90 69.62
1 -0.90 72.03
2 -23 100
2 0.69 48.01
2 0.69 45.63
For each value of group, I ...
2
votes
1answer
463 views
Get and process entire row in ddply in a function
It's easy to grab one or more in ddply to process, but is there a way to grab the entire current row and pass that onto a function? Or to grab a set of columns determined at runtime?
Let me ...
2
votes
2answers
258 views
Add indicator variable to long data frame for when the value increases from one year to the next
I have a long data frame with three columns fyear, tic, and dcvt (for fiscal year, ticker, and total convertible debt). There are about 18 fiscal years and a few thousand tickers. I would like to add ...
2
votes
1answer
209 views
ddply : push or pull?
Does ddply push or pull when grouping data?
I.e, does it involve many passes over the data frame, or just one?
2
votes
1answer
155 views
processing of hospital admission data using R (part II)
Thanks all for providing suggestion on the question processing of hospital admission data using R, I have addition question on this issue, actually, it should be the task before that question.
Now I ...
1
vote
1answer
42 views
ddply and categorization function
i would like to categorize a column in a dataframe based on a comparison of subsequent rows.
for:
DF <- data.frame(respondent=rep(letters[1:2], each=5), response=c(1,1,2,2,1,3,1,1,1,1))
...
1
vote
4answers
77 views
R colSums By Group
In the following matrix dataset:
1 2 3 4 5
1950 7 20 21 15 61
1951 2 10 6 26 57
1952 12 27 43 37 34
1953 14 16 40 47 94
1954 2 17 62 113 101
1955 3 ...
1
vote
1answer
53 views
Rescale column in dataframe?
I have a dataframe called data where I would like to rescale the values in the 4th field to a range of 0-1000 and round the scaled value to the nearest integer. I'm trying to use ddply, round and ...
1
vote
4answers
118 views
Aggregate over categories that contain NAs with ddply and lapply?
I would like to aggregate a data.frame over 3 categories, with one of them varying. Unfortunately this one varying category contains NAs (actually it's the reason why it needs to vary). Thus I created ...
1
vote
1answer
94 views
comparing two integers in R: “longer object length not multiple of shorter object length” ddply
I'm getting an "longer object length not multiple of shorter object length" warning in R when comparing two integers to subset a dataframe in the midst of a user defined function.
The user defined ...
1
vote
1answer
73 views
Plyr for jack-knife data subsetting
I am trying to run a jack-knife using Plyr. I have a large dataset (715 sites over 10 years). I have already calculated the Species Richness (count of all species present) in a square for each year ...
1
vote
0answers
83 views
How do I write this log analysis code as a function in R?
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:
...
1
vote
2answers
69 views
first row for non-aggregate functions
I use ddply to avoid redundant calculations.
I am often dealing with values that are conserved within the split subsets, and doing non-aggregate analysis. So to avoid this (a toy example):
...
1
vote
2answers
118 views
Problems with ddply for splitting a large number of categories in R
I recently asked a question about counting the number of times an element had repeated itself ...
1
vote
1answer
176 views
r combining results from tapply using do.call(rbind) or ddply
I have Date/Time information where I want to get the average, min, max, range of the dates across "seasons" grouped by years and the only way I have been slightly successful of doing this is with ...
1
vote
1answer
138 views
Preserve ordered factor when using ddply
I use ddply a lot. I use ordered factors occasionally. Calling ddply on a data frame that contains an ordered factor drops any ordering in the recombined data frame.
I wrote the following wrapper for ...
1
vote
2answers
82 views
How to retrieve global index while using ddply?
I am trying to find the best deal in terms of price/carat from the Diamonds dataset from the plyr package
So I do
new = ddply(diamonds, c("cut", "color", "clarity"), transform, ecart= ...
1
vote
1answer
342 views
adding text to ggplot geom_jitter points that match a condition
How can I add text to points rendered with geom_jittered to label them? geom_text will not work because I don't know the coordinates of the jittered dots. Could you capture the position of the ...
1
vote
1answer
319 views
R Plyr - Ordering results from DDPLY?
Does anyone know a slick way to order the results coming out of a ddply summarise operation?
This is what I'm doing to get the output ordered by descending depth.
ddims <- ddply(diamonds, ...
1
vote
2answers
1k views
R: using ddply to apply functions to subsets of data
I'm trying to use the ddply method to take a dataframe with various info about 3000 movies and then calculate the mean gross of each genre. I'm new to R, and I've read all the questions on here ...
1
vote
1answer
138 views
filling in missing “holes” in a dataset
I have a dataset like this:
Patient_ID Lab_No Discharge_Date
P0001 L001 2010-01-01
P0001 L002
P0001 L003
P0001 L004
I have some lab data that from the same patient, ...
0
votes
1answer
111 views
How can I populate the rows of an R data frame, in which each row represents a day, with a single common value for each day of a year?
R: how can I populate the rows of a data frame, in which each row represents a day, with a single common value for each year?
I have a data frame consisting of a date column, a price column and then ...
0
votes
3answers
59 views
Calculate correlation by aggregating columns of data frame
I have the following data frame:
y <- data.frame(group = letters[1:5], a = rnorm(5) , b = rnorm(5), c = rnorm(5), d = rnorm(5) )
How to get a data frame which gives me the correlation between ...
0
votes
1answer
41 views
Can I combine columns and function on columns with plyr?
I don't know why this code that is trying to group events based on an id and with bigger granularity fails using the plyr library:
times <- as.POSIXct("1970-01-01")+1:100
vals <- ...
0
votes
2answers
61 views
How can I calculate an inner product with an arbitrary number of columns using ddply?
I want to perform an inner product of the first D columns for each row in a data frame with a given array, W. I am trying the following:
W = (1,2,3);
ddply(df, .(id), transform, inner_product=c(col1, ...
0
votes
1answer
54 views
Grouping R variables based on sub-groups
I have a data formatted as
PERSON_A PERSON_B MEET LEAVE
That describes basically when a PERSON_A met a PERSON_B at time MEET and they said "bye" to each other at moment LEAVE. The time is expressed ...
0
votes
1answer
242 views
Using Plyr in R with a complex function that returns multiple variable
I have a data set with three grouping variables: condition, sub, & delay. Here is a simplified version of my data (real data is much longer)
sub condition delay later_value choiceRT later_choice ...
0
votes
2answers
133 views
R - ddply and incrementing a counter
I am using ddply to split up a data frame and send the chunks to a function. Before the ddply line, I set i=1. Then inside the function I am incrementing i so that each chunk of data gets a new ...
0
votes
2answers
382 views
How does ddply handle factors as “split” variables?
I have a data.frame with 20 columns. The first two are factors, and the rest are numeric. I'd like to use the first two columns as split variables and then apply the mean() to the remaining columns.
...