Displaying 1 result from an estimated 1 matches for "analysis_for_one_data_sourc".
Did you mean:
analysis_for_one_data_source
2011 Nov 08
1
skip on error
...fferent data sets and I am doing some calculations over time,
For that every data set is split into junks based on the time stamps
so one data set has like 10 timestamps.
There is also the case that one data set has less than 10 timestamps.
In my code I was doing the following
lapply(Datasource,analysis_for_one_data_source)
lapply(TimeFrames,analysis_for_one_data_source_and_one_time_frame)
as you can imagine there are times where the second lapply will "explode"
analysis_for_one_data_source_and_one_time_frame<- function( DataSource, TimeFrame,) {
return( do_analysis(DataSource,TimeFrame))
...