1
vote
1answer
40 views

Function for querying a data.table

I have a data.table called prices that has 3 columns: ticker, date and price. I have run setkey(prices,ticker,date) If I do this from the code, it works prices[list("MSFT",as.Date("2013-01-15")] ...
0
votes
1answer
30 views

Recalculate column only for highest date in each category

I want to recalculate a column in my data.table only for certain rows, depending on a Condition, the category (Cat) and the Date. A row may qualify to be recalculated only if Condition==TRUE. Among ...
3
votes
2answers
28 views

Access a single cell / subsetted column of a data.table

How can I access just a single cell in a data.table in the way as I could for a data.frame: mdf <- data.frame(a = c("A", "B", "C"), b = rnorm(3), c = 1:3) mdf[ mdf$a == "B", "c" ] [1] 2 Doing ...
2
votes
2answers
44 views

Find values in a given interval without a vector scan

With a the R package data.table is it possible to find the values that are in a given interval without a full vector scan of the data. For example ...
1
vote
1answer
43 views

Efficiently run a function on many columns in a data table in R

I have a data table which has a series of columns that make up the key and then a large number of other numeric columns. I have a separate vector that is the same length as each column and I would ...
2
votes
0answers
52 views

Insert a row in a data.table

If I have a data frame set.seed(12345) df=data.frame(a=rnorm(5),b=rnorm(5)) I can add a row by e.g. df[6,] =c(5,6) If I now do library(data.table) dt=data.table(df) dt[6,]=c(5,6) It fails ...
1
vote
3answers
46 views

using R data.table with 'all()' to subset data

I have the following data.table: dt=structure(list(a = c("10", "10", "20", "30", "10", "25", "10" ), b = c("0.605887455840394", "0", "0.709466017509524", "0", "0.585528817843856", ...
0
votes
1answer
38 views

Calculating a weighted mean using data.table in R with weights in one of the table columns

I have a data.table shown below. I'm trying to calculate the weighted mean for subsets of the data. I've tried two approaches with the MWE below set.seed(12345) dt = data.table(a ...
0
votes
1answer
25 views

data.table object trying to effect ddply like operation using by()

I've searched quite a bit for this to no avail, let alone trying to make it work myself, so without further a do: I have this data.table: DT = ...
4
votes
1answer
62 views

Remove multiple columns from data.table

What's the correct way to remove multiple columns from a data.table? I'm currently using the code below, but was getting unexpected behavior when I accidentally repeated one of the column names. I ...
1
vote
1answer
34 views

convert data.frame to data.table column missing

Had a case like this. Tried to convert "mtcars" class from data.frame to data.table. "mtcars" data: > mtcars mpg cyl disp hp drat wt qsec vs am gear carb Mazda RX4 ...
3
votes
1answer
55 views

data.table := assigning and grouping

Working on country specific data. Need to assign and group countries into pre-defined country groups. Wrote code as below. Like to know if there is more efficient way to script by NOT typing each ...
1
vote
2answers
60 views

Referring to data.table columns by names saved in variables

data.table is a fantastic R package and I am using it in a library I am developing. So far all is going very well, except for one complication. It seems to be much more difficult (compared to the ...
3
votes
3answers
61 views

How can I reshape my data.table efficiently

I have a data.table DT set.seed(1) 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 29 2: 1 B 92 3: 1 A 100 4: 1 B 82 5: 2 A 28 6: 2 B 26 ...
1
vote
0answers
37 views

R and data.table package syntax in eclipse

I'am using Eclipse and StatET to script in R. I am using the great data.table package which introduce the syntax := For eclipse it is a syntax error but it is not the case in the context of this ...
7
votes
1answer
44 views

Data.table objects turn into data.frame after calling fix()

Every time I run the command fix(DT) on a data.table, after closing the fix window, DT turns into a data.frame object. Is this normal? library(data.table) DT <- data.table(a = 1:2, b = 2:3) > ...
3
votes
0answers
28 views

creating data.table::ITime vector

I was surprised doing this, using the data.table package: a = as.ITime('12:01:00') str(a) Class 'ITime' int 4326 a = as.ITime(c('12:01:00','12:00:02')) Message d'avis : In if (!is.na(y)) ...
5
votes
2answers
58 views

Using R's data.table package, can I use variables created in 'j' in the same 'j' argument?

In the 'j' argument in data.table, is there syntax allowing me to reference previously created variables while in the same 'j' statement? I'm thinking of something like Lisp's let* construct. ...
0
votes
2answers
43 views

Combining items from a data.frame list into a single data.table

I have a named data.frame that contains 10 items with three columns each. Each item in the data.frame looks like this: $RandArcBo1 $RandArcBo1$x [1] -97.5 -174.5 156.5 -172.5 111.5 -132.5 142.5 ...
5
votes
1answer
86 views

Subset by group with data.table

Assume I have a data table containing some baseball players: library(plyr) library(data.table) bdt <- as.data.table(baseball) For each player (given by id), I want to find the row corresponding ...
5
votes
1answer
53 views

.SD columns in data.table in R

When writing some expression that operates in j on a data.table, .SD doesn't contain all the columns in the table but rather only the ones that the expression uses. This is fine for running things but ...
1
vote
1answer
26 views

Returning copy of data.table from ReferenceClass method

I try to return copies of data.tables from methods of a ReferenceClass: dummy <- setRefClass( "dummy", fields = list( dt = "data.table" ), methods = list( initialize = function( df ...
1
vote
4answers
48 views

naming a list when returning values from data.table

When returning items to data.table, it would be nice if they automatically took on the names of the variables. How does one do this? This is what I mean: require(data.table) x = data.table(a=1:10, ...
7
votes
1answer
83 views

Set a variable using colnames(), update data.table using := operator, variable is silently updated? [duplicate]

Well this one's a bit strange... Seems that by creating a new column in a data.table by using the := operator, a previously assigned variable (created using colnames) changes silently. Is this ...
6
votes
1answer
57 views

Use a factor column in “by” and do not drop empty factors

Suppose I have a data.table: x <- data.table(x=runif(3), group=factor(c('a','b','a'), levels=c('a','b','c'))) I want to know how many rows in x exist for each group: x[, .N, by="group"] # ...
1
vote
2answers
80 views

converting a row of data.frame to column names using data.table

I have a large data frame of 5 million rows, with three columns. I would like to transform it to a matrix which has as its rows USER_ID, ID as columns, and value as CNT. This could be done with melt ...
3
votes
2answers
50 views

Keeping 0 count combinations when aggregating with data.table

Suppose I've got the following data.table : dt <- data.table(id=c(rep(1,5),rep(2,4)), sex=c(rep("H",5),rep("F",4)), ...
4
votes
2answers
42 views

Efficiently inserting default missing rows in a data.table

Suppose I've got the following data.table : dt <- data.table(id=c(1,1,1,1,1,1,2,2,2,2), wday=c("mon","tue","wed","thu","fri","sat","mon","tue","thu","fri"), ...
3
votes
1answer
66 views

R summarizing multiple columns with data.table

I'm trying to use data.table to speed up processing of a large data.frame (300k x 60) made of several smaller merged data.frames. I'm new to data.table. The code so far is as follows ...
0
votes
1answer
42 views

Conflicting/duplicate column names in J()?

I have two data.tables (dat and results) that share column names. On a side note, results holds summary statistics computed earlier on *sub*groups of dat. In other words, nrow(results) != nrow(dat) ...
3
votes
1answer
57 views

Error while self indexing in data.table

Here is an example of what I mean which makes things clear: require(data.table) x = data.table(a=1:10, idx=sample(c(TRUE, FALSE), 10, replace=TRUE)) x[idx] Error in eval(expr, envir, enclos) : object ...
4
votes
1answer
53 views

Calculate cumulative product based on date by category

I want to add a new column to my data.table containing the cumulative product of Data1 based on the Date. The cumulative product should be calculated for each category (Cat) and should start with the ...
4
votes
1answer
63 views

Newly added column in 'j' of data.table should be available in the scope

I have this code: dat<-dat[,list(colA,colB ,RelativeIncome=Income/.SD[Nation=="America",Income] ...
1
vote
1answer
46 views

Finding identical rows in subgroups with data.table

My table has two IDs. I'd like, for each value of the 1st ID, to find whether two rows with different value of the 2nd ID are identical (excluding the column of the 2nd ID..). A table very similar ...
2
votes
1answer
41 views

Assign value to specific data.table columns and rows

still understanding this great package... Could anyone please explain me the reason of this error? Thanks! library(data.table) DT <- data.table(id = LETTERS, var1 = rnorm(26), ...
3
votes
2answers
63 views

Animals in the zoo: can we aggregate a daily time series of factors and flag activity by ID?

Suppose there is a daily time series of animal activity in a zoo over many years. A subset of a very large dataset might look like this: library(data.table) type <- ...
1
vote
2answers
63 views

reorder subset of data.table records

Let's say I have the following data.table: set.seed(123) dt <- data.table (id=1:10, group=sample(LETTERS[1:3], 10, replace=TRUE), val=sample(1:100, 10, ...
2
votes
1answer
64 views

reshape alternating columns in less time and using less memory

How can I do this reshape faster and so that it takes up less memory? My aim is to reshape a dataframe that is 500,000 rows by 500 columns with 4 Gb RAM. Here's a function that will make some ...
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 ...
2
votes
1answer
70 views

What is the most efficient way to change the case of column names in a data.table?

Sometimes before merging it's useful to change the case of the column names for consistency. When working with a data.frame this is pretty straightforward (as outlined here); although the same ...
2
votes
2answers
48 views

Idiom for dropping a single column in a data.table

I need to drop one column from a data.frame containing a few hundred columns. With a data.frame, I'd use subset to do this conveniently: > dat <- data.table( ...
1
vote
1answer
68 views

Why this assignment using `which` does not work in `data.table`?

I have a data.table with this structure: Classes ‘data.table’ and 'data.frame': 1336 obs. of 5 variables: $ timestamp: POSIXct, format: "2013-02-01 00:03:49" "2013-02-01 00:03:49" "2013-02-01 ...
2
votes
1answer
49 views

Replacing data.table observations; vector approach

I would like to replace select values in a data.table variable with a new set of values. ### Vector of old values I would like to replace char <- c('one', 'two', 'three', 'four', 'five', 'six', ...
4
votes
1answer
93 views

Convex hull ggplot using data.tables in R

I found a nice example of plotting convex hull shapes using ggplot with ddply here: Drawing outlines around multiple geom_point groups with ggplot I thought I'd try something similar--create ...
1
vote
1answer
61 views

Create dummy variables in one table based on range of dates in another table

I have two tables. table1 looks like this date hour data 2010-05-01 3 5 2010-05-02 7 7 2010-05-02 10 8 2010-07-03 18 3 2011-12-09 22 1 ...
-1
votes
1answer
67 views

Dataset manipulation, substitution

I have the following dataset: V1 V2 V3 V4 V5 V6 V7 V8 V9 V10 1: NA NA NA NA NA NA NA NA NA NA 2: NA NA NA NA NA NA NA NA NA NA 3: NA NA NA NA NA NA NA NA NA ...
0
votes
2answers
49 views

a sequence of str_match in a data.table

I have a string variable to parse into two parts. I figured I'd approach this using str_match from the stringr package, which returns a matrix with the original string in the first column and each ...
1
vote
1answer
57 views

data.table & devtools: install_github error - function works locally but not after installing package from github

I'm having trouble with the data.table package after installing a package from github using devtools. My custom function (which uses data.table functionality) works when I load the function locally, ...
3
votes
2answers
51 views

unable to perform calculations using r data.table package

I have a huge data frame, last 30 rows are below: libary(data.table) dput(p) structure(list(DATE = structure(c(1367516015, 1367516045, 1367516075, 1367516105, 1367516135, 1367516165, 1367516195, ...
0
votes
1answer
34 views

Apply function on each cell in a column and add the result to a new column

I have a data.table as shown below. What I want is to apply a function to each of the elements in column C. The function will take in a vector(since Col C contains vector elements) and return another ...

1 2 3 4 5 12