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.

[R] Time it takes to run a code

2015-10-25 Thread Maram SAlem
Hi All, I'm using a function, say func, and I want to apply it to all the rows of a certain matrix. The problem is that my code kept on running for more than two days without giving any output. I've made some modifications.But is there a way to know the time needed to execute my code and reach an