0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

matplotlibで日本語を使う方法(GoogleClab)

Last updated at Posted at 2023-12-13

記事概要

matplotlibで日本語を使う方法(GoogleClab)。
何もしないとタイトルや軸ラベルが文字化けする。

方法

japanize_matplotlibをインストールして、

!pip install japanize_matplotlib

日本語フォントを読み込ませる。

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

参考

matplotlibで日本語文字列を使う

0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?