2
3

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 3 years have passed since last update.

Macのggplotで日本語が文字化けする場合の解消方法

Last updated at Posted at 2021-08-10

MacのRStudioでggplotのグラフが文字化けする問題

  • Rのエンコーディング問題といっても、以下のように色々種類がある
    1. スクリプト自体の文字化け
    2. データの文字化け
    3. グラフでの文字化け
      • 標準グラフ
      • ggplotのグラフ
  • 本記事は3.グラフの文字化けの解消方法に関してのメモ
  • Macでggplotを利用すると日本語が□□□□のように文字化けするケースの解消方法について

解消方法

ggplotの文字化け解消方法

以下のように、theme_setでMac用のフォント(HiraKakuProN-W3)を指定してからggplotで作図する。

例)

theme_set( theme_bw(base_family = "HiraKakuProN-W3")) 

d %>%
  ggplot() +
  geom_line(aes(x = 年月, y = ユニークUU))

(おまけ)標準グラフの文字化け解消方法

ggplotではなく、標準グラフの場合は、parで指定。

例)

par(family = "HiraKakuProN-W3")

boxplot(iris$Sepal.Length,main = "箱ひげ図")

以上。

ひとこと

  • ググると山ほど情報でてくるが、参考に載せたの2つのまとめは非常にわかりやすかった
  • 調べるのちょっと手間取ったので誰かの助けになれば

参考

2
3
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
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?