plyr is an R package with tools to solve a variety of problems using the split-apply-combine strategy

learn more… | top users | synonyms (1)

6
votes
3answers
62 views

Error bars on stacked bar ggplot2

I'm struggling to put error bars into the correct place on a stacked bar. As I read on an earlier post I used ddply in order to stack the error bars. Then that changed the order of the stacking so I ...
1
vote
3answers
28 views

Finding proportions based on data.frame subsets

I have a set of counts from data with three dimensions: df <- data.frame(type = c("A", "B", "B", "A", "A", "C", "B", "C"), group = c("Tp", "Tp", "Tp", "Tp", "Fc", "Fc", "Fc", "Fc"), size = ...
0
votes
1answer
58 views

Converting ddply syntax into data.table

I have a 1.3 million row data frame which I need to aggregate into regional and temporal summaries. Plyr's syntax is straightforward, but it's just much too slow to be practical (I've left ddply to ...
3
votes
1answer
64 views

How can I assign a variable's value to column name in plyr?

Is there any way to assign a variable's value to the resultant column name in plyr? So in this code... column_name <- 'total' df <- data.frame(a=c('a','b'), b=c(1,2)) ddply(df, .(a), summarise, ...
0
votes
1answer
26 views

Densityplots using colwise - different colors for each line?

I need a plot of different density lines, each in another color. This is an example code (but much smaller), using the built-in data.fame USArrests. I hope it is ok to use it? colors <- ...
0
votes
1answer
13 views

getting mdply output to fit a dataframe

I'm having trouble getting the right results from a mdply function from the plyr package. I have a data frame: foo <- data.frame(x = letters[1:3], times = 3:5) foo x times 1 ...
4
votes
1answer
46 views

Keep row names when using rbind.fill in R

Does anyone know how to keep rownames in the rbind.fill function. library(plyr) #creating data a <- mtcars[ 1:5 , c("mpg","hp","gear") ] b <- mtcars[ 6:10 , c("mpg","disp","gear") ] #does not ...
0
votes
1answer
32 views

calculation of anomalies on time-series

I'd like to calculate monthly temperature anomalies on a time-series with several stations. I call here "anomaly" the difference of a single value from a mean calculated on a period. My data frame ...
1
vote
1answer
45 views

ddply without obvious variable name reference in dataframe

I have a data frame called thetas containing about 2.7 million observations. > str(thetas) 'data.frame': 2700000 obs. of 8 variables: $ rho_cnd : num 0 0 0 0 0 0 0 0 0 0 ... $ pct_cnd : ...
0
votes
1answer
38 views

Use of ddply instead of a loop - subtracting for particular categories

I have a dataset with 2 numeric columns. Example dataset: X = c(-1:-20) Y=c(11:30) df=as.data.frame(cbind(X,Y)) My dataset looks like: X Y 1 -1 11 2 -2 12 3 -3 13 4 -4 14 5 -5 15 ...
1
vote
2answers
39 views

R how to transform part of list into a data.frame?

Suppose I have a dataset as list object. Here is a way to quickly generate some random data: a <- list(x1=rnorm(10),x2=rnorm(10)) b <- list(y1=rnorm(10),y2=rnorm(10),y3=rnorm(10)) c <- ...
4
votes
4answers
91 views

Matching multiple date values in R

I have the following dataframe DF describing people that have worked on a project on certain dates: ID ProjectName StartDate 1 Health 3/1/06 18:20 2 Education 2/1/07 ...
1
vote
1answer
38 views

Different results when when using ddply and summarize. Due to different R and plyr versions?

I'm looking to summarize data similar to the ToothGrowth data in the datasets package. The output I want looks like this: supp len half one two 1 OJ 619.9 132.3 227.0 260.6 2 VC 508.9 ...
0
votes
1answer
38 views

Variable names in plyr summary output and input data frames

I found a funny feature from ddply function. It seems that you cannot use the same variable name in summary output data frame than in input data frame: set.seed(1) ex <- data.frame(Type = ...
1
vote
1answer
35 views

Change data.frame in *_ply function

Let's say I have a <- data.frame( z = rep( c("A", "B", "C"), 2 ), p = 1:6, stringsAsFactors=FALSE ) b <- data.frame( z = c( rep( "A", 5), rep( "B", 5 ) ), q = 1:10, stringsAsFactors=FALSE ) ...
0
votes
0answers
59 views

Doing several cross sectional regression of unbalanced panel data in R

I have an unbalanced panel data set. The following data will do for illustration: Id <- c(rep(1:4,3),rep(5,2)) Id <- Id[order(Id)] Year <- c(rep(2000:2002,4),c(2000,2002)) z1 <- ...
-4
votes
1answer
125 views

when is plyr better than data.table? [closed]

Better here can mean faster or easier to read/shorter syntax or it could also mean that the command is not even doable in data.table. I don't use plyr a lot and would like to know if there are cases ...
3
votes
3answers
85 views

Performing Operations on a Subset Using Data Table

I have a survey data set in wide form. For a particular question, a set of variables was created in the raw data to represent different the fact that the survey question was asked on a particular ...
2
votes
4answers
90 views

going nuts trying to write a simple function that operates on one column of a dataframe

I am trying to write a function that "variabilizes" the ddply call: december <- ddply(adk47, .(PeakName, Elevation), summarize, needThese=if(sum(dec) == 0) "needThis" else character(0), ...
2
votes
2answers
74 views

Producing a rolling average of an unbalanced panel data set

I am trying to compute rolling means of an unbalanced data set. To illustrate my point I have produced this toy example of my data: ID year Var RollingAvg(Var) 1 2000 2 NA 1 2001 3 ...
1
vote
2answers
46 views

Subsetting while summarizing data with ddply

I have data which look like: > head(ddd) id affiliate_id affiliate_account_id source Pipeline num good bad 1 61046463 1006 69 29eada Contact Info Bad ...
3
votes
3answers
71 views

select subset of different data.frame columns

I want to select a different a subset of a dataframe from each column and do and average like this per <- data.frame(Apocal=c(10,1,2,3,4,0,6),Aporos=c(0,2,1,3,0,5,6),Euker=c(0,3,5,7,0,0,0), ...
3
votes
3answers
66 views

Subsetting data in a loop and write results to a list

I have dataframe containing five variables. Two of them are metric measurements and three of them contain groups stored as factors. I try to subset this dataframe three times in a loop by the ...
0
votes
1answer
49 views

Better way to use plyr (or other) to create a variable using seq from 2 other variables

I've got some data that contains admission and discharge dates, and I need to (for each person and admit ID #), create a wide-to-long-ish dataframe that contains person and admit ID with the sequence ...
2
votes
2answers
72 views

plyr package writing the same function over multiple columns

I want to write the same function to multiple columns using ddply function, but I'm tried keep writing them in one line, want to see is there better way of doing this? Here's a simple version of the ...
1
vote
3answers
72 views

Count occurrences of factor in R, with zero counts reported

I want to count the number of occurrences of a factor in a data frame. For example, to count the number of events of a given type in the code below: library(plyr) events <- data.frame(type = ...
1
vote
3answers
33 views

sort a matrix according to some group indices in R

I have a matrix generated as follows: set.seed(999) mat.a = matrix(round(rnorm(24,4,9)),3,8) mat.a The mat.a looks like this: [,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [1,] 1 6 -13 -6 ...
4
votes
3answers
99 views

Reshape data from long to a short format by a variable, and rename columns

How to do this more elegantly with plyr, reshape2, aggregate function and/or data.table? library(plyr) set.seed(1) x <- data.frame(Ind = paste0("Ind", 1:10), Treatment = ...
0
votes
1answer
48 views

Convert a list of numeric vectors with different lengths to data.frame

I have a df : dput(head(data)) structure(list(company_code = c(1L, 1L, 1L, 1L, 1L, 11L, 11L, 11L, 12L, 13L, 13L), company_name = c("AB Billingsfors-LÃ¥nged", "AB Billingsfors-LÃ¥nged", "AB ...
1
vote
1answer
157 views

Apply xtable() to a list of tables and a create pdf using knitr in R-studio

I want to convert a list of tables to Latex using xtable() and create a pdf using Knitr in R-studio. I have tried to use llply() on the list but it does not work. Here is a list of tables: ...
1
vote
1answer
61 views

How to compute the mean for the last few rows in each time period in a data frame?

I have data collected for a few subjects, every 15 seconds over an hour split up by periods. Here's how the dataframe looks like, the time is "Temps", subjects are "Sujet" and the periods are ...
4
votes
2answers
98 views

How to aggregate one column and separate them by comma in a data frame

I'm trying to use plyr package to aggregate one column according to the other two and separate it by a comma, and keep it in a character format...but I kept getting ugly result... Here's a simple ...
1
vote
3answers
61 views

Convert a data frame with many time series into a list of single variate xts

I have a data frame of time series: X1.HK.Equity X X2.HK.Equity X.2 X3.HK.Equity X.4 1 31/12/2002 38.855 31/12/2002 19.547 31/12/2002 5.011 2 02/01/2003 38.664 02/01/2003 19.547 ...
0
votes
1answer
57 views

Using ddply instead of for

I'm quite new to plyr package (and R in general) I have following code # I have some dataframe df # columns: # -somefactor: factor # -value: numeric f<-levels(df$somefactor) ...
4
votes
2answers
128 views

Convert R list to dataframe with missing/NULL elements

Given a list: alist = list( list(name="Foo",age=22), list(name="Bar"), list(name="Baz",age=NULL) ) what's the best way to convert this into a dataframe with name and age columns, with ...
0
votes
2answers
28 views

Finding first datetime by group

Hello I am looking for an equivalent with plyr (or any other package but data.table cause of bug #2531) of "min datetime by group" set.seed(1) datetimes=c(rep(as.POSIXct("2011-01-01 08:00:00"),3) , ...
0
votes
1answer
52 views

Calculate group characteristics with ddply

I have a follow-up question related to Calculate "group characteristics" without ddply and merge I have a similar dataframe (per below), but trying to calculate the percentage of rotten ...
0
votes
2answers
85 views

idiomatic way to stack totals plus multiple groupwise results into a single output table

i'm curious if there are faster or more elegant ways to start with this data set.. # generate some fake data x <- mtcars[ , c( 1 , 2 , 8:11 ) ] ..and construct this table (with overall, gear, ...
0
votes
2answers
89 views

Conditional subset based on summing adjacent columns in R (plyr package?)

I'm looking for a more efficient way to create subsets in R. Using a data set where rows = products and columns = time, I would like to find those rows (products) where an item started selling in Week ...
1
vote
0answers
54 views
3
votes
2answers
62 views

How to get related variables according to a condition in R

Hi to all the community members, I check all the related questions, but I was unable to find a solution for this. I have the following DB ...
2
votes
2answers
85 views

Graphing percent of whole based on multiple criteria

Update: If anyone is wondering, both answers work. They will both achieve a summary table, much like you would create if emulating Sumifs in Excel. This is exactly what I was looking for. Thanks ...
0
votes
1answer
74 views

Advice on plyr-ing this 'for' loop

Try as I might, I can't quite figure out how to get plyr to work. Would appreciate any help with this specific example, and bonus points for any explanations of why your example works. The data is ...
2
votes
2answers
88 views

Why doesn't the plyr package use my parallel backend?

I'm trying to use the parallel package in R for parallel operations rather than doSNOW since it's built-in and ostensibly the way the R Project wants things to go. I'm doing something wrong that I ...
1
vote
1answer
119 views

Apply function to every column in data frame operating on names

I'm trying to write something that will take a data frame and plot every numeric column, with simple plots for non-normal distributions and control charts for normal ones: library(plyr) library(qcc) ...
3
votes
2answers
107 views

Two geom_bar() and wrong order of factor variable

I have problem with correct order of factor variable while ploting bars in ggplot2. I am using two geom_bars with subsets of original dataset (variable g with two levels 'A' and 'B'). How can I ...
2
votes
1answer
75 views

plyr with nested groups?

Is there an eloquent way to use ddply() to obtain output for not only the most granular groups defined, but also the groups of those sub-groups? In other words, when one of the classifiers is "any" ...
0
votes
3answers
89 views

How to dynamically subset values and calculate the mean

I have a data frame containing three variables (ACC and Type and ID), where ACC refers to the accuracy of the decision, the Type refers to 30 different decision types which are repeated 15 times for ...
1
vote
1answer
32 views

Multiple plyr functions and operations in one statement?

I have a dataset as follows: i,o,c A,4,USA B,3,CAN A,5,USA C,4,MEX C,1,USA A,3,CAN I want to reform this dataset into a form as follows: i,u,o,c A,3,4,2 B,1,3,1 C,2,2.5,1 Here, u represents the ...
1
vote
2answers
86 views

Rename .id column in ldply

Is there a way to assign a custom name to the column that is normally named .id in the result of ldply? > ldply(setNames(1:3, 1:3), function(i) data.frame(j=1/i)) .id j 1 1 1.0000000 2 ...

1 2 3 4 5 12