Rでggplotを使って作った図の軸ラベルや, タイトルの変更の仕方を解説します. 使用する関数 labs() xlab() ylab() ggtitle() 使い方 このページでは, 次の図を基本にして, ラベルなどを変えていきます. 使用するデータセットは, irisです. > library(ggplot2) > str(iris) 'data.frame': 150 obs. of 5 variables: $ Sepal.Length: num 5.1 4.9 4.7 4.6 5 5.4 4.6 5 4.4 4.9 ... $ Sepal.Width : num 3.5 3 3.2 3.1 3.6 3.9 3.4 3.4 2.9 3.1 ... $ Petal.Length: num 1.4 1.4 1.3 1.5 1.4 1.7 1.4 1.5 1.4 1.5 ... $ Pe