Tagged Questions

The R data.table package provides an enhanced version of a data.frame with embedded indexes.

learn more… | top users | synonyms

22
votes
4answers
327 views

R self reference

In R I find myself doing something like this a lot: adataframe[adataframe$col==something]<-adataframe[adataframe$col==something)]+1 This way is kind of long and tedious. Is there some way for ...
16
votes
2answers
332 views

Why are pandas merges in python faster than data.table merges in R?

I recently came across the pandas library for python, which according to this benchmark performs very fast in-memory merges. It's even faster than the data.table package in R (my language of choice ...
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 ...
15
votes
3answers
2k views

What's the fastest way to merge/join data.frames in R?

For example (not sure if most representative example though): N <- 1e6 d1 <- data.frame(x=sample(N,N), y1=rnorm(N)) d2 <- data.frame(x=sample(N,N), y2=rnorm(N)) This is what I've got so ...
14
votes
3answers
176 views

Why is running “unique” faster on a data frame than a matrix in R?

I've begun to believe that data frames hold no advantages over matrices, except for notational convenience. However, I noticed this oddity when running unique on matrices and data frames: it seems to ...
14
votes
3answers
2k views

Efficiency of operations on R data structures

I'm wondering if there's any documentation about the efficiency of operations in R, specifically those related to data manipulation. For example, I imagine it's efficient to add columns to a data ...
13
votes
4answers
5k views

how to do a data.table merge operation

I've been digging through the documentation for the data.table package (a replacement for data.frame that's much more efficient for certain operations), including Josh Reich's presentation on SQL and ...
11
votes
2answers
350 views

Fastest way to subset - data.table vs. MySQL

I'm an R user, and I frequently find that I need to write functions that require subsetting large datasets (10s of millions of rows). When I apply such functions over a large number of observations, ...
10
votes
3answers
244 views

Fastest way to replace NAs in a large data.table

I have a large data.table, with many missing values scattered throughout its ~200k rows and 200 columns. I would like to re code those NA values to zeros as efficiently as possible. I see two ...
10
votes
1answer
215 views

When should I use the := operator in data.table?

data.table objects now have a := operator. What makes this operator different from all other assignment operators? Also, what are its uses, how much faster is it, and when should it be avoided?
9
votes
2answers
199 views

Why has data.table defined := rather than overloading <-?

data.table has introduced the := operator. Why not overload <-?
8
votes
2answers
138 views

Loop through columns in a data.table and transform those columns

I have a data.table DT with a column named RF and many columns with an underline _in it. I want to loop through all those columns with an underline and subtract the RF column from it. However, I'm ...
8
votes
6answers
141 views

Using one data.frame to update another

Given 2 data frames that are identical in terms of column names/datatypes, where some columns uniquely identify the rows, is there an efficient function/method for one data.frame to "update" the ...
8
votes
1answer
517 views

R: When using data.table how do I get columns of y when I do x[y]?

I am trying to use the data.table package, and really like the speedups I am getting, but I am stumped by this error when I do x[y, <expr>] where x and y are "data-tables" with the same key, and ...
7
votes
3answers
139 views

Creating a function to replace NAs from one data.frame with values from another

I regularly have situations where I need to replace missing values from a data.frame with values from some other data.frame that is at a different level of aggregation. So, for example, if I have a ...
7
votes
1answer
69 views

Splitting a data.table with the by-operator: functions that return numeric values and/or NAs fail

I have a data.table with two columns: one ID column and one value column. I want to split up the table by the ID column and run a function foo on the value column. This works fine as long as foo does ...
7
votes
1answer
132 views

Convert column classes in data.table

I have a problem using data.table: How do I convert column classes? Here is a simple example: With data.frame I don't have a problem converting it, with data.table I just don't know how: df <- ...
7
votes
2answers
2k views

SQL-like functionality in R

I am used to writing data manipulation logic in SQL and now that I am learning R I find myself sometimes just wanting to do something that would be simple in SQL but I have to learn a bunch of stuff ...
6
votes
6answers
262 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
2answers
78 views

Merging dataframes in R on a pre-sorted column?

I usually work with big dataframes that are pretty well sorted (or can be easily sorted). Given two dataframes, both sorted by 'user' some.data <user> <data_1> <data_2> user ...
6
votes
2answers
75 views

non-joins with data.tables

I have a question on the data.table idiom for "non-joins", inspired from Iterator's question. Here is an example: library(data.table) dt1 <- data.table(A1=letters[1:10], B1=sample(1:5,10, ...
6
votes
5answers
192 views

Split data by year

I have data like this: ID ATTRIBUTE START END 1 A 01-01-2000 15-03-2010 1 B 05-11-2001 06-02-2002 2 B 01-02-2002 08-05-2008 2 ...
6
votes
1answer
138 views

masking conflicts

When loading a .csv with sqldf, everything goes fine until I load data.table. For example: library(sqldf) write.table(trees, file="trees.csv", row.names=FALSE, col.names=FALSE, sep=",") my.df <- ...
5
votes
3answers
163 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
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
2answers
215 views

data.table and “by must evaluate to list” Error

I would like to use the data.table package in R to dynamically generate aggregations, but I am running into an error. Below, let my.dt be of type data.table. sex <- c("M","F","M","F") age <- ...
5
votes
4answers
610 views

R: Are there any alternatives to loops for subsetting from an optimization standpoint?

A recurring analysis paradigm I encounter in my research is the need to subset based on all different group id values, performing statistical analysis on each group in turn, and putting the results in ...
4
votes
1answer
112 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
1answer
90 views

Big Merge / Memory management

I've hit a wall trying to merge a large file and a smaller one. I have read many other posts about memory management in R, and haven't been able to find a non-extreme (go 64bit, upload to a cluster, ...
4
votes
6answers
131 views

faster way to create variable that aggregates a column by id

Is there a faster way to do this? I guess this is unnecessary slow and that a task like this can be accomplished with base functions. df <- ddply(df, "id", function(x) cbind(x, perc.total = ...
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
1answer
142 views

How do I select the first row in an R data frame that meets certain criteria?

How do I select the first row of an R data frame that meets certain criteria? Here is the context: I have a data frame with five columns: "pixel", "year","propvar", "component", "cumsum." There ...
4
votes
1answer
87 views

Pass by reference: The := operator in the data.table package

While testing my code, I found out the following: If I assign a data.table DT1 to DT and change DT afterwards, DT1 changes with it. So DT and DT1 seem to be internally linked. Is this intended ...
4
votes
2answers
83 views

How to match two data.frames with an inexact matching identifier (one identifier has to be in the range of the other)

I have the following matching problem: I have two data.frames, one with an observation every month (per company ID), and one with an observation every quarter (per company ID; note that quarter means ...
4
votes
2answers
83 views

Is my way of duplicating rows in data.table efficient?

I have monthly data in one data.table and annual data in another data.table and now I want to match the annual data to the respective observation in the monthly data. My approach is as follows: ...
4
votes
2answers
111 views

milliseconds timestamps as keys in data.table

In this question the issue of using dates in data.tables was discussed. A solution is to use the built-in classes for time and dates. These work with a precision up to the second. Is there a ...
4
votes
2answers
122 views

efficient row-wise operations on a data.table

I need to find the row-wise minimum of many (+60) relatively large data.frame (~ 250,000 x 3) (or I can equivalently work on an xts). set.seed(1000) my.df <- sample(1:5, 250000*3, replace=TRUE) ...
4
votes
6answers
173 views

R How to Get the Average of One Variable based on Ranges of Another Variable?

If I have a series of observations with two variables X and Y, how can I get the average value of Y based on ranges of variable X? So for example, with some data like: df = ...
4
votes
4answers
136 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
7answers
275 views

How do you remove columns from a data.frame?

Not so much 'How do you...?' but more 'How do YOU...?' If you have a file someone gives you with 200 columns, and you want to reduce it to the few ones you need for analysis, how do you go about it? ...
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
3answers
204 views

Proper/fastest way to reshape a data.table

I have a data table in R: library(data.table) set.seed(1234) DT <- data.table(x=rep(c(1,2,3),each=4), y=c("A","B"), v=sample(1:100,12)) DT x y v [1,] 1 A 12 [2,] 1 B 62 [3,] 1 A 60 [4,] ...
4
votes
2answers
194 views

data.table and character vectors

In my work, I often refer to lists of variables as just one character vector. A <- data.table(var1 = 1:10, var2 = 11:20, var3 = 21:30) vecvar <- c("var1", "var2", "var3") Whenever possible, I ...
3
votes
2answers
92 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
1answer
104 views

What does .SD stand for in data.table in R

.SD looks useful but I do not really know what I am doing with it. What does it stand for? Why is there a preceding period (full stop). What is happening when I use it? I read ".SD is a data.table ...
3
votes
2answers
100 views

Checking for missing items in a ragged panel stored in a data.table

I have a large data set dim(dt) [1] 422096 162 where dt is a data.table with a key of tic. I am trying to make a measure for each group of how many missing entries I have. The groups are time ...
3
votes
1answer
92 views

Can data.table functions manipulate date and time columns on the fly?

I have started using data.table. Indeed it is very fast and quite nice syntax. I am having trouble with dates. I like to use lubridate. In many of my data sets I have dates or dates and times and have ...
3
votes
3answers
108 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 ...

1 2