Displaying 1 result from an estimated 1 matches for "return_selected_time_interv".
Did you mean:
return_selected_time_interval
2011 Nov 01
1
Nested lapply? Is this allowed?
Dear all,
I want for a given data set to call a funciton many time. That bring us all to the notion of lapply (or any other variance). My problem is that this data set should also be created from another lapply
As for example
DataToAnalyse <- return_selected_time_interval(TimeStamps,Time[[1]], Time[[2]]) # Where Time[[1]] and Time[[2]] are lists
return(lapply(do_analysis(DataToAnalyse)))
as you can see the DataToAnalyse should be also an lapply. For the list of give Time (Time[[1]] and Time[[2]]) should create a list DataToAnalyse.
My con...