I have a question regarding @time in julia, I hope this might make me understand @time better.
How much is it usual that @time differs when running the code over and over? I thought it should be around 0.1-0.2 sec difference in maximum, but when I run:
@time nbinclude("mynotebook.ipynb") ``` multiple times I get everything from:
```0.010195 seconds (27.85 k allocations: 1.591 MB)```
to:
```0.969294 seconds (27.84 k allocations: 1.590 MB)```
I want to know if this is normal behaviour before I put a lot of time trying to "fix" my code. I just thought it seems very strange that it can differ this much. How much is it normal for the time to differ when you're using @time?