The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
4answers
524 views

Trouble converting long list of data.frames (~1 million) to single data.frame using do.call and ldply

I know there are many questions here in SO about ways to convert a list of data.frames to a single data.frame using do.call or ldply, but this questions is about understanding the inner workings of ...
8
votes
1answer
103 views

How to avoid renaming of rows when using rbind inside do.call?

I am trying to bind some sub elements of the elements from the list The list OC is as follows > library(quantmod) > OC <- getOptionChain('AAPL', NULL) > str(OC) List of 9 $ Feb ...
7
votes
5answers
611 views

R: specifying a string as an argument of a function that calls another function

This is a question regarding coding in R. The example I provide is didactic. Suppose I have functions called 'func1' and 'func2', where each takes two arguments (let's say scalars). I want to ...
5
votes
2answers
185 views

merge multiple data.frame by row in R

I would like to merge multiple data.frame in R using row.names, doing a full outer join. For this I was hoping to do the following: x = as.data.frame(t(data.frame(a=10, b=13, c=14))) y = ...
4
votes
2answers
156 views

extracting segments of a data.table

I have a data.table and I need to extract equal length segments starting at various row locations. What is the easiest way to do this? For example: x <- data.table(a=sample(1:1000,100), ...
3
votes
2answers
278 views

lapply and do.call running very slowly?

I have a data frame that is some 35,000 rows, by 7 columns. it looks like this: head(nuc) chr feature start end gene_id pctAT pctGC length 1 1 CDS 67000042 67000051 ...
3
votes
2answers
1k views

how to combine vectors with different length within a list in R?

I have a problem when combining the following vectors included in the list: x <- list(as.numeric(c(1,4)),as.numeric(c(3,19,11))) names (x[[1]]) <- c("species.A","species.C") names (x[[2]]) ...
3
votes
2answers
134 views

Environment chaining in R

In my R development I need to wrap function primitives in proto objects so that a number of arguments can be automatically passed to the functions when the $perform() method of the object is invoked. ...
2
votes
4answers
108 views

interweave two data.frames in R

I would like to interweave two data.frame in R. For example: a = data.frame(x=1:5, y=5:1) b = data.frame(x=2:6, y=4:0) I would like the result to look like: > x y 1 5 2 4 2 4 3 3 3 3 ...
2
votes
2answers
210 views

Can you use fix via do.call?

I have some code where it is more convenient to call fix via do.call, rather than directly. Any old data frame will work for this example: dfr <- data.frame(x = 1:5, y = letters[1:5]) The ...
2
votes
4answers
121 views

do.call and curve can not plot a function inside another function environment

I am facing a strange problem about do.call and curve: func1 <- function (m, n) { charac <- paste ("func2 <- function(x)", m, "*x^", n, sep = "") eval(parse(text = charac)) ...
1
vote
4answers
2k views

Using cbind on an arbitrarily long list of objects

I would like to find a way to create a data.frame by using cbind to join together many separate objects. For example, if A, B, C & D are all vectors of equal length, one can create data.frame ABCD ...
1
vote
2answers
49 views

How do I pass every element of a list to a function as unnamed arguments?

Let's say I have some models stored in a list: mods <- list() mods[[1]] <- lm(mpg ~ disp, data = mtcars) mods[[2]] <- lm(mpg ~ disp + factor(cyl), data = mtcars) mods[[3]] <- lm(mpg ~ ...
1
vote
1answer
83 views

plot() and do.call(): How to pass expressions to plot title when '…' is used otherwise?

When run the following code, I obtain Error in as.graphicsAnnot(text) : could not find function "bold". How can I fix this? my.qq <- function(x, main=expression(bold(italic(F)~~"Q-Q plot")), ...
1
vote
3answers
38 views

Dynamically change column names based on inputs

I am trying to dynamically name the output of a data frame based upon the inputs. get.max2 <- function(data = NULL, column) { #require(qdap) col <- eval(substitute(column), data) max ...
1
vote
1answer
129 views

Constant-size period.apply with irregularly spaced endpoints in R

I have an irregular time series contained in xts and separate time index vector (endpoints). I want to calculate statistics for every index point based on preceding 5 seconds for every endpoint. So, ...
1
vote
1answer
464 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 ...
0
votes
1answer
47 views

Using do.call factor to scale - resetting value error

This is an extension of the question that I asked here: Getting Factor Means into the dataset after calculation Now that I have basically normalized all of the stats that I am interested in using I ...