search for: do_analysis_for_all

Displaying 1 result from an estimated 1 matches for "do_analysis_for_all".

2011 Nov 08
1
How to handle empty arguments
...I am having a data stucture that contains Products and Time Stamps,   I have made also two lists ProductList=list(c('Example1','Example2'...) TimeStamp=list(c("1990-02-03 12:57:60"),c("1990-02-03 12:57:60"),   then I have made few functions that call each other   do_analysis_for_all the data<-function(arguments){    .....    return(lapply(ProductList,do_analysis_for_one_product_list_for_all_time_stamps) }   do_analysis_for_one_product_list_for_all_time_stamps<-function(arguments){     ....    return(lapply(TimeStamps,do_analysis_for_one_product_list_for_one_time_stamps)...