Tagged Questions
The lapply tag has no wiki summary.
9
votes
1answer
107 views
Why do rapply and lapply handle NULL differently?
I'm aware that NULL values in lists can sometimes trip people up. I'm curious why in a specific instance lapply and rapply seem to treat NULL values differently.
l <- list(a = 1, c = NULL, d = 3)
...
7
votes
2answers
151 views
How to use lapply with a formula?
I have a problem with the lapply function and I did not find any matching question posted earlier.
I need to apply a permutation test to all list elements, however I am not able to setup the lapply ...
6
votes
2answers
115 views
Using get inside lapply, inside a function
this may seem like a overly complicated question, but it has me driving me a little nuts for some time. It is also for curiosity, because I already have a way of doing what I need, so is not that ...
5
votes
1answer
117 views
combination of expand.grid and mapply?
I am trying to come up with a variant of mapply (call it xapply for now) that combines the functionality (sort of) of expand.grid and mapply. That is, for a function FUN and a list of arguments L1, ...
5
votes
2answers
153 views
What are the advantages of the “apply” functions? When are they better to use than “for” loops, and when are they not? [closed]
Possible Duplicate:
Is R's apply family more than syntactic sugar
Just what the title says. Stupid question, perhaps, but my understanding has been that when using an "apply" function, ...
4
votes
3answers
142 views
Dataframes in a list; adding a new variable with name of dataframe
I have a list of dataframes which I eventually want to merge while maintaining a record of their original dataframe name or list index. This will allow me to subset etc across all the rows. To ...
4
votes
2answers
156 views
zipping lists in R
As a guideline I prefer apply functions on elements of a list using lapply or *ply (from plyr) rather than explicitly iterating through them. However, this works well when I have to process one list ...
3
votes
1answer
105 views
Using multicore in R to analyse GWAS data
I am using R to analyze genome-wide association study data. I have about 500,000 potential predictor variables (single-nucleotide polymorphisms, or SNPs) and want to test the association between each ...
3
votes
1answer
107 views
Segmentation Fault working with a list of xts objects in R
I am having trouble working with a list of xts objects. I get different and strange behavior when running lapply on the list elements, and sometimes the program segfaults. I am running R 2.12.2 on ...
3
votes
1answer
579 views
R apply function with multiple parameters
I have a function f(var1, var2) in R. Suppose we set var2 = 1 and now I want to apply the function f() to the list L. Basically I want to get a new list L* with the outputs
...
3
votes
2answers
272 views
Working with dataframes in a list: Drop variables, add new ones
Define a list dats with two dataframes, df1 and df2
dats <- list( df1 = data.frame(a=sample(1:3), b = sample(11:13)),
df2 = data.frame(a=sample(1:3), b = sample(11:13)))
> dats
$df1
a b
...
3
votes
2answers
149 views
Extract columns from list of coeftest objects
Is there a function that can extract two or more columns from a coeftest object? This is easy one coeftest object at a time, but can I do the same to a list (other than a for() loop)?
> # ...
3
votes
2answers
143 views
which list element is being processed when using snowfall::sfLapply?
Assume we have a list (mylist) that is use as input object for a lapply function. Is there a way to know which element in mylist is being evaluated? The method should work on lapply and ...
3
votes
3answers
664 views
R: How to tell lapply to ignore an error and process the next thing in the list?
I have an example function below that reads in a date as a string and returns it as a date object. If it reads a string that it cannot convert to a date, it returns an error.
testFunction <- ...
2
votes
1answer
42 views
How does lapply really work - lapply dcast?
Obviously I still do not understand fully how lapply really works. Sure, it applies a function over list elements and returns a list. Yet when using it with custom functions I am not so sure how to ...
2
votes
1answer
40 views
Measure the max value of all previous values in a data frame
I am trying to make a function that will determine if value in a column of a data frame is a new high. So for example if I had the following data:
x <- rnorm(10,100,sd=5)
x <- data.frame(x)
...
2
votes
0answers
82 views
Avoiding loops in iterative solution of ODE
I'm fitting a parametric model to some survival data with time-dependent covariates. The fitting procedure involves solving some ODEs iteratively - one ODE per time-interval per subject, but such that ...
2
votes
2answers
198 views
Using lapply with changing arguments
R textbooks continue to promote the use of lapply instead of loops. This is easy even for functions with arguments like
lapply(somelist, f, a=1, b=2)
but what if the arguments change depending on ...
2
votes
1answer
171 views
Use mapply to fit list of lm models to list of data frames [R]
Is this possible? I can get mapply to work with the help examples, but I can't get a trivial example with lm to work. Here's my attempt which returns a matrix, instead of a list of lm objects.
...
2
votes
1answer
129 views
R: Creating lapply() type test cases
I've been working on code to create a parallel lapply() type function that uses Amazon's Elastic Map Reduce engine as the 'grid' for processing (yes, it's a mapper with no reducer). After I get the ...
2
votes
2answers
233 views
How to replace a column in R? strange behavior with dates
I am trying to convert a uncommon date format into a standard date. Basically I have a dataset that contains a period with semiannual frequency formatted like: 206 denoting the second half of 2006, ...
2
votes
2answers
473 views
R question. Using lappy on a data.frame and creating new variables w/ output
I have 13 quantitative variables in a data.frame (called 'UNCA').
The variables are named q01_a, q01_b, ...q01_m.
I want to create 13 new variables that have the same values but are coded as a ...
1
vote
3answers
40 views
Can't access items after an lapply
I'm using lapply to try to split up a character string in a data frame. The strings all look similar to "02D_48M_RHD". I'm trying to grab the numbers before the "D" and before the "M".
My use of ...
1
vote
2answers
63 views
How to get the name of a data.frame within a list?
How can I get a data.frames name from the a list? Sure get gets the object itself, but I want to have its name for use within another function. Here's the use case, in case you rather suggest a work ...
1
vote
4answers
94 views
Aggregate over categories that contain NAs with ddply and lapply?
I would like to aggregate a data.frame over 3 categories, with one of them varying. Unfortunately this one varying category contains NAs (actually it's the reason why it needs to vary). Thus I created ...
1
vote
3answers
112 views
Apply function in R
In R, how do you replace the following code using functions like apply, lapply, rapply, do.call, etc.?
u <- 10:12
slist <- list()
for (i in 1:length(u)) {
p <- combn(u, i)
for (j in ...
1
vote
2answers
103 views
Running lagged regressions with lapply and two arguments
I am running multiple univariate regressions, like in this reproducible example:
require(dynlm)
data(USeconomic)
US<-USeconomic
vars<-colnames(US)[-2]
a<-lapply(colnames(US),function(x) ...
1
vote
1answer
88 views
multiple plots from data frames in a list after a conditional test
I have a tricky problem with applying a function to a list of data frames. Ultimately I want to plot individual time series charts for large data set of drug usage figures.
My dataset comprises 30 ...
1
vote
1answer
100 views
R: Extract Deeply Embedded Elements of List into Array
I would like to extract elements from a deeply embedded list into an array.
For example, I am implementing a t-test at each grid point (2x2) and would like to save each p-value from the t-test into ...
1
vote
1answer
203 views
Using lapply() for data structured in lists of lists from simulation study
I have run up against the wall regarding the application of lapply() in a simulation study. The data are designed to help us understand how a standardization formula impacts the outcomes of a ...
1
vote
1answer
187 views
Recalculate each point in dataframe with lapply/sapply
I write my own function named batcheffect to recalculate all values in a dataframe.
The function only needs the dataframe as import. First, the mean is calculated in the function and then for each ...
1
vote
2answers
473 views
How to return a data.frame with a given name from a function?
Assume I have a function that reads data from a MySQL table, manipulates it and returns some data.frame. Note the function is just an example whose functionality does not matter itself..., E.g.:
...
1
vote
3answers
301 views
setting levels inside lapply loop in r
I´m trying to clean the factor variables in a dataframe from trailing spaces. However the levels assignment doesnt work inside my lapply function.
rm.space<-function(x){
a<-gsub(" ","",x)
...
1
vote
2answers
217 views
How to create a column containing a string of stars to inidcate levels of a factor in a data frame in R
(second question today - must be a bad day)
I have a dataframe with various columns, inculding a concentration column (numeric), a flag highlighting invalid results (boolean) and a description of the ...
0
votes
2answers
45 views
R extract regression coefficients from multiply regression via lapply command
I have a large dataset with several variables, one of which is a state variable, coded 1-50 for each state. I'd like to run a regression of 28 variables on the remaining 27 variables of the dataset ...
0
votes
0answers
71 views
Why such large differences in performance between R's by() and lapply()?
I have an xts object containing time series for multiple stock symbols. I need to split the xts object in symbol-specific subgroups and process the data for each symbol, then reassemble all the ...
0
votes
1answer
95 views
Question regarding llply or lapply - applying functions to data.frames in a list
Dear R user community,
I have many data.frames in a list, as follows (only one data.frame in the list of 21 shown for convenience):
> str(datal)
List of 21
$ BallitoRaw.DAT ...
0
votes
1answer
108 views
R: reference iteration number in call to sfLapply(1:N, function(x))
Is it possible to reference the iteration number in a sfLapply call as follows -
wrapper <- function(a) {
y.mat <- data.frame(get(foo[i,1]), get(foo[i,2]))
...
...
...
0
votes
3answers
498 views
R quantmod - getsymbols and use of lapply, Cl() and merge to extract only closing prices
I've been messing around with this for some time. I recently started using the quantmod package to perform analytics on stock prices.
I have a ticker vector that looks like the following:
> ...
0
votes
5answers
1k views
Read multiple CSV files into separate data frames
Suppose we have files file1.csv, file2.csv, ... , and file100.csv in directory C:\R\Data and we want to read them all into separate data frames (e.g. file1, file2, ... , and file100).
The reason ...
0
votes
3answers
1k views
Subset a data.frame by list and apply function on each part, by rows
This may seem as a typical plyr problem, but I have something different in mind.
Here's the function that I want to optimize (skip the for loop).
# dummy data
set.seed(1985)
lst <- list(a=1:10, ...
0
votes
1answer
368 views
Can you use the lapply() function to alter the value of input?
I was wondering whether it is possible to use the lapply() function to alter the value of the input, similar to:
a1<-runif(100)
a2<-function(i){
a1[i]<-a1[i-1]*a1[i];a1[i]
}
...
-1
votes
2answers
66 views
Assign names from one list to another
I got a bunch dynamically created regressions stored in some list called regressions. Now I´d like to rename their coefficients efficiently. What I have so far is this loop that works:
for (i in ...
-6
votes
3answers
190 views
Lapply is part of what package in R?
Lapply for R is part of what package?
I get "Error: could not find function "laply"".
Thanks.