Re: [R] Time it takes to run a code

2015-10-27 Thread Maram SAlem
Thanks for helping Boris. Regards, Maram Salem On 25 October 2015 at 23:30, Boris Steipe wrote: > It may be useful for you to estimate the time complexity of your function: > try it with smaller input that takes short and noticeable time, see whether > the time increases linearly, quadratical

Re: [R] Time it takes to run a code

2015-10-25 Thread Boris Steipe
It may be useful for you to estimate the time complexity of your function: try it with smaller input that takes short and noticeable time, see whether the time increases linearly, quadratically, or exponentially with the number of elements you process, then extrapolate to your full data set.