LoginSignup
14
5

More than 5 years have passed since last update.

Macでmatplotlibの日本語文字化けを解決する方法

Posted at

フォントをダウンロードするのが面倒だったため色々探していたら下記だけで解決しました。

import matplotlib.pyplot as plt
plt.rcParams['font.family'] = 'AppleGothic'

そうすると下図のように日本語がちゃんと表示されます。

スクリーンショット 2018-04-03 20.56.15.png

以上です。

14
5
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
14
5