Ggplot2 の geom_vline にラベルを追加する方法
次の基本構文を使用して、ggplot2 の垂直線にラベルを追加できます。
+ annotate(" text ", x= 9 , y= 20 , label=" Here is my text ", angle= 90 )
次の例は、この構文を実際に使用する方法を示しています。
例 1: geom_vline にラベルを追加する
次のコードは、ggplot2 の垂直線にラベルを追加する方法を示しています。
library (ggplot2) #create data frame df <- data. frame (x=c(1, 3, 3, 4, 5, 5, 6, 9, 12, 15), y=c(13, 14, 14, 12, 17, 21, 22, 28, 30, 31)) #create scatterplot with vertical line at x=10 ggplot(df, aes(x=x, y=y)) + geom_point() + geom_vline(xintercept= 10 ) + annotate("text", x= 9.7 , y= 20 , label=" Some text ", angle= 90 )
例 2: geom_vline にカスタム ラベルを追加する
次のコードは、 size 引数とcolor引数を使用して、カスタム サイズと色のラベルを ggplot2 の垂直線に追加する方法を示しています。
library (ggplot2) #create data frame df <- data. frame (x=c(1, 3, 3, 4, 5, 5, 6, 9, 12, 15), y=c(13, 14, 14, 12, 17, 21, 22, 28, 30, 31)) #create scatterplot with vertical line at x=10 ggplot(df, aes(x=x, y=y)) + geom_point() + geom_vline(xintercept= 10 ) + annotate("text", x= 9 , y= 20 , label=" Some text ", angle= 90 , size= 15 , color=" blue ")
例 3: geom_vline に複数のラベルを追加する
次のコードは、 annotate()関数を複数回使用して、ggplot2 の垂直線に複数のラベルを追加する方法を示しています。
library (ggplot2) #create data frame df <- data. frame (x=c(1, 3, 3, 4, 5, 5, 6, 9, 12, 15), y=c(13, 14, 14, 12, 17, 21, 22, 28, 30, 31)) #create scatterplot with vertical line at x=10 ggplot(df, aes(x=x, y=y)) + geom_point() + geom_vline(xintercept= 10 ) + annotate("text", x= 9 , y= 20 , label=" Some text ", angle= 90 , size= 15 , color=" blue ") + annotate("text", x= 11 , y= 20 , label=" More text ", angle= 90 , size= 13 , color=" red ")
annotate()関数を何度でも自由に使用して、必要なだけラベルをプロットに追加できます。
追加リソース
次のチュートリアルでは、ggplot2 で他の一般的なタスクを実行する方法を説明します。
ggplot2 で線形回帰直線をプロットする方法
ggplot2 で軸の制限を設定する方法
ggplot2 で並列プロットを作成する方法