5
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Jupyter Notebookで黒画面(テーマの変更)

Last updated at Posted at 2017-09-27

はじめに

ここのところPythonのプログラミングにJypyter Notebookを使っていますが,黒画面にしたくなりました.そこでその方法をメモ.

使用マシンは,MacBook Pro (Retina, 13-inch, Mid 2014) です.
使っているPythonのバージョンは,Python 3.6.2 です.

テーマのインストール

pip3 install jypyterthemes

使用可能なテーマの表示

~$jt -l
Available Themes: 
   chesterish
   grade3
   gruvboxd
   gruvboxl
   monokai
   oceans16
   onedork
   solarizedd
   solarizedl

テーマ使用のコマンド

jt -t oceans16 -N -T

結果

結果は以下のような感じ.私はoceans16を使っています.なぜか私の環境では,monokaiは使えませんでした.

Screenshot 2017-09-27 10.50.47.png

下の写真はグラフの部分を表示したものですが,何かおかしい.そう,軸の部分が見えない.
Screenshot 2017-09-27 10.51.36.png

これを解決する,最も簡単な方法は,Python matplotlibのプログラム内で,
facecolor='w'を明確に宣言すること.

fig=figure(facecolor='w')

これで,グラフ全体が軸を含めて表示されます.
Screenshot 2017-09-27 11.11.30.png

ちなみにMacでスクリーンショット(画面全体)を撮るには,以下のコマンドを使います.

shift + command + 3

参考サイト

http://futurismo.biz/archives/6306
http://www.lisz-works.com/entry/jupyter-theme
http://www.procrasist.com/entry/2017/09/18/130300

以 上

5
14
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?