Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
5answers
308 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 ...
2
votes
2answers
160 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 ...
1
vote
1answer
166 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 ...
1
vote
4answers
261 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 ...
0
votes
2answers
93 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]]) ...