!ggplotの軸ラベルを変更する 金額のラベルに通貨単位を入れたい場合、'''scale_x_連続値系(continuous, log, など)''' のlabelオプションに label = scales::label_dollar() label = scales::dollar label = scales::label_comma() を指定すると、$10,000などのように表示される。 日本円に換えたければ、'''label_dollar()'''のオプションを prefix = NULL, suffix = "円" とする。 :参照先: * https://ggplot2.tidyverse.org/reference/scale_continuous.html