Tagged Questions
0
votes
1answer
24 views
Selecting 2 corresponding columns in each row of a data frame
I apologize as this seems to be a basic question but I have been searching for a better solution but haven't found it. I have data of the following type.
...
2
votes
3answers
89 views
Speed of vectorized operation dependent of number of columns of data.frame
Why does it take longer to operate a comparison on a data.frame with the same number of elements, but arranged in more columns on vectorized operations? Take this simple example, where we subtract 0.5 ...
-1
votes
2answers
100 views
subsetting dataframe R avoid for loop
In a large dataframe (1 million+ rows), I am counting the number of elements (rows) that are within a particular range and satisfy a third criteria. I have 33 of those ranges and use a very slow for ...
6
votes
2answers
93 views
R date time aligning and fill through values
I have multiple frames, for the purpose suppose 2.
Each frame comprises 2 columns - an index column, and a value column
sz<-5;
...
2
votes
1answer
93 views
Calling function that summarizes data frame based on parameter and applying to data frame and nls
I am working with weather data and utility bills and am trying estimate a nonlinear regression model.
I am coming up with a problem. The function I call to calculate the weather statistics, Heating ...
5
votes
2answers
114 views
efficiently replacing data frame with cumulative frequency
I'm trying to write a program that takes a large data frame and replaces each column of values by the cumulative frequency of those values (sorted ascending). For instance, if the column of values ...
0
votes
3answers
88 views
subset in parallel using a list of dataframes and a list of vectors
This works:
onion$yearone$id %in% mask$yearone
This doesn't:
onion[1][1] %in% mask[1]
onion[1]['id'] %in% mask[1]
Why? Short of an obvious way to vectorize in parallel columns in DF and in ...
4
votes
3answers
207 views
R - Need help speeding up a for loop
I have two dataframes; one is 48 rows long and looks like this:
name = Z31
Est.Date Site Cultivar Planting
1 24/07/2011 Birchip Axe 1
2 08/08/2011 Birchip Bolac 1
...
0
votes
2answers
273 views
Regression in R using vectorization and matrices
I have a vectorization Q in R using matrices. I have 2 Cols that need to be regressed against each using certain indices. Data is
matrix_senttoR = [ ...
0.11 0.95
...
-2
votes
1answer
131 views
How to vectorize and accelerate strtime() logtime conversion on a data-frame
(EDIT: one of the issues here is scale, namely what works for one row will blow up/crash R on a 200,000 * 50 dataframe. For example, strptime must be applied column-wise, not row-wise, to avoid ...
1
vote
1answer
211 views
R Replace Dataframe Records using Vectorization
I'd like to know if there is any way of solving the following problem in an efficient manner. I have a collection of X-Y points. For each point I need to generate a certain number of records and, ...
4
votes
3answers
3k views
Apply lm to subset of data frame defined by a third column of the frame
I've got a data frame containing a vector of x values, a vector of y values, and a vector of IDs:
x <- rep(0:3, 3)
y <- runif(12)
ID <- c(rep("a", 4), rep("b", 4), rep("c", 4))
df <- ...
1
vote
1answer
1k views
R: split a data-frame, apply a function to all row-pairs in each subset
I am new to R and am trying to accomplish the following task efficiently.
I have a data.frame, x, with columns: start, end, val1, val2, val3, val4. The columns are sorted/ordered by start.
For each ...