Ggplot2 で x 軸のラベルを変更する方法
scale_x_discrete()関数を使用して、ggplot2 のプロットの x 軸ラベルを変更できます。
p + scale_x_discrete(labels=c(' label1 ', ' label2 ', ' label3 ', ...))
次の例は、この構文を実際に使用する方法を示しています。
例: ggplot2 で X 軸のラベルを変更する
R に、さまざまなバスケットボール チームの得点を示す次のデータ フレームがあるとします。
#create data frame
df <- data. frame (team=c('Mavs', 'Heat', 'Nets', 'Lakers'),
dots=c(100, 122, 104, 109))
#view data frame
df
team points
1 Mavs 100
2 Heat 122
3 Nets 104
4 Lakers 109
各チームの得点を視覚化する棒グラフを作成すると、ggplot2 は x 軸に配置するラベルを自動的に作成します。
library (ggplot2) #create bar plot ggplot(df, aes(x=team, y=points)) + geom_col()
X 軸のラベルを別のものに変更するには、 scale_x_discrete()関数を使用します。
library (ggplot2) #create bar plot with specific axis order ggplot(df, aes(x=team, y=points)) + geom_col() + scale_x_discrete(labels=c(' label1 ', ' label2 ', ' label3 ', ' label4 '))
X 軸のラベルが、 scale_x_discrete()関数を使用して指定したラベルと一致するようになりました。
必要に応じて、scale_discrete()関数の外側のベクトルでラベルを指定することもできます。
library (ggplot2) #specify labels for plot my_labels <- c(' label1 ', ' label2 ', ' label3 ', ' label4 ') #create bar plot with specific axis order ggplot(df, aes(x=team, y=points)) + geom_col() + scale_x_discrete(labels=my_labels)
これは前のプロットと一致します。
追加リソース
次のチュートリアルでは、ggplot2 で他の一般的なタスクを実行する方法を説明します。
ggplot2 で軸ラベルを回転する方法
ggplot2で軸ブレークを設定する方法
ggplot2 で軸の制限を設定する方法
ggplot2で凡例ラベルを変更する方法