I can’t figure out how to store the result from cell magic – %%timeit
? I’ve read:
- Can you capture the output of ipython’s magic methods?
- Capture the result of an IPython magic function
and in this questions answers only about line magic. In line mode (%
) this works:
JavaScript
x
2
1
In[1]: res = %timeit -o np.linalg.inv(A)
2
But in cell mode (%%
) it does not:
JavaScript
1
4
1
In[2]: res = %%timeit -o
2
A = np.mat('1 2 3; 7 4 9; 5 6 1')
3
np.linalg.inv(A)
4
It simply executes the cell, no magic. Is it a bug or I’m doing something wrong?
Advertisement
Answer
You can use the _
variable (stores the last result) after the %%timeit -o
cell and assign it to some reusable variable:
JavaScript
1
11
11
1
In[2]: %%timeit -o
2
A = np.mat('1 2 3; 7 4 9; 5 6 1')
3
np.linalg.inv(A)
4
Out[2]: blabla
5
<TimeitResult : 1 loop, best of 3: 588 µs per loop>
6
7
In[3]: res = _
8
9
In[4]: res
10
Out[4]: <TimeitResult : 1 loop, best of 3: 588 µs per loop>
11
I don’t think it’s a bug because cell mode commands must be the first command in that cell so you can’t put anything (not even res = ...
) in front of that command.
However you still need the -o
because otherwise the _
variable contains None
.