[PYTHON] Jupyter Notebook Magic Command Personal Summary

Prerequisites

What is a magic command?

Magic Commands is a mechanism provided by the IPython kernel. In addition to functions related to Notebook operation, it provides utility functions such as moving directories and displaying a list of files.

Magic command basics

Enter % at the beginning and then enter the command. The command to output the current directory is as follows.

%pwd

The magic command % pwd does not seem to be different from ! Pwd using the shell, but command execution using ! depends on the OS shell. On the other hand, magic commands depend on the functions provided by the IPython kernel.

If a magic command changes any value, you can assign the return value to a variable, just as you would when calling a Python function.

curr_dir = %pwd
curr_dir

Magic commands that are easy to use

A magic command that measures the execution time of Python.

  %time sum(range(10000))
  CPU times: user 226 μs, sys: 0 ns, total: 226 μs
  Wall time: 230 μs
output Description
Wall time The time it took from the start to the end of the program
CPU times: user user CPU time. Time required to execute the program itself
sys system CPU time. Time required for OS system call

A magic command that summarizes and returns the measured values of the results of multiple attempts. In the following cases, the time when 1000 iterations are tried 7 times is output.

  %timeit sum(range(10000))
  224 µs ± 21.8 µs per loop (mean ± std. dev. of 7 runs, 1000 loops each)

The number of loops and the number of trials can be specified as options.

  #2000 loops, 5 trials
  %timeit -n 2000 -r 5 sum(range(10000))
  215 µs ± 17.9 µs per loop (mean ± std. dev. of 5 runs, 2000 loops each)

When measuring with% timeit for multiple lines of Python code, add two leading % to %% as shown below. (Cell magics)

  %%timeit -n 1000 -r 3
  
  for i in range(1000):
    i * 2
  
  75.2 µs ± 9.58 µs per loop (mean ± std. dev. of 3 runs, 1000 loops each)

A magic command that gets a list of code cell execution histories.

  #Get the latest 5 histories
  %history -l 5

A magic command that behaves like the UNIX command ls. Unlike ! Ls, % ls determines the type of OS and uses the commands to be executed internally. ( Ls command for macOS, dir command for Windows)

You can change the frequency of Auto Save. (Default 120 seconds)

  #Execute Auto Save once every 60 seconds.
  %autosave 60

A magic command that configures settings related to Matplotlib.

When inline is specified, the graph is drawn directly under the code cell.

![image-20191125010847446.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/241748/7b6bc4c8-4a42-9b22-6438-000b0a7d3217.png)

If tk is specified, an interactive graph will be output in a separate window.

![image-20191125011247935.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/241748/e060a535-020b-3de0-5ff3-0abf0b0cec13.png)

When notebook is specified, an interactive graph is output directly under the code cell.

![image-20191125011753694.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/241748/a60a72c3-12cb-b970-08cb-d7ac8d5837b4.png)

--To change the output method once specified, restart the kernel.

Recommended Posts

Jupyter Notebook Magic Command Personal Summary
Jupyter Notebook memo
Introducing Jupyter Notebook
Powerful Jupyter Notebook
Linux Command Summary
Jupyter notebook password
Jupyter Notebook memo
Docker command summary
A memorandum of how to execute the! Sudo magic command in Jupyter Notebook
Get started Jupyter Notebook
Pandas Personal Notes Summary
keyhac Personal settings summary
[Linux] Basic command summary
3 Jupyter notebook (Python) tricks
[Infrastructure] While command summary
Find, locate command summary
Image related command summary
Jupyter Docker image summary
[Cloud103] # 3 Jupyter Notebook again
Shortcut key for Jupyter notebook
Python3 programming functions personal summary
Introduced Jupyter Notebook to CentOS 7
Using Graphviz with Jupyter Notebook
Display HTML in Jupyter notebook
Use pip with Jupyter Notebook
Multiprocessing error in Jupyter Notebook
Try using Jupyter Notebook dynamically
[Super Basics] About jupyter Notebook
High charts on Jupyter notebook
View PDF on Jupyter Notebook
Use Cython with Jupyter Notebook
homebrew, pyenv, anaconda, Jupyter Notebook
Play with Jupyter Notebook (IPython Notebook)
Personal Ubuntu & WSL2 setup summary
jupyter nbextension, nbextensions_configurator installation command
[Complete version] Jupyter Notebook shortcut
Run Jupyter Notebook on windows
[Learning memo] Django command summary
How to use Jupyter Notebook
[Linux] User / group command summary
python3.8 venv environment jupyter notebook