Jak dodać etykietę do geom_hline w ggplot2
Możesz użyć następującej podstawowej składni, aby dodać etykietę do linii poziomej w ggplot2:
+ annotate(" text ", x= 9 , y= 20 , label=" Here is my text ")
Poniższe przykłady pokazują, jak używać tej składni w praktyce.
Przykład 1: Dodaj etykietę do geom_hline
Poniższy kod pokazuje, jak dodać etykietę do linii poziomej w 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 horizontal line at y=20 ggplot(df, aes(x=x, y=y)) + geom_point() + geom_hline(yintercept= 20 ) + annotate("text", x= 9 , y= 20.5 , label=" Some text ")
Przykład 2: Dodaj niestandardową etykietę do geom_hline
Poniższy kod pokazuje, jak używać argumentów rozmiaru i koloru , aby dodać etykietę o niestandardowym rozmiarze i kolorze do linii poziomej w 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 horizontal line at y=20 ggplot(df, aes(x=x, y=y)) + geom_point() + geom_hline(yintercept= 20 ) + annotate("text", x= 10 , y= 21.5 , label=" Some text ", size= 15 , color=" blue ")
Przykład 3: Dodaj wiele etykiet do geom_hline
Poniższy kod pokazuje, jak wielokrotnie używać funkcji annotate() w celu dodania wielu etykiet do linii poziomej w 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 horizontal line at y=10 ggplot(df, aes(x=x, y=y)) + geom_point() + geom_hline(yintercept= 20 ) + annotate("text", x= 10 , y= 19 , label=" Some text ", size= 15 , color=" blue ") + annotate("text", x= 10 , y= 21 , label=" More text ", size= 9 , color=" red ")
Możesz używać funkcji annotate() tyle razy, ile chcesz, aby dodać dowolną liczbę etykiet do wykresu.
Dodatkowe zasoby
Poniższe samouczki wyjaśniają, jak wykonywać inne typowe zadania w ggplot2:
Jak dodać etykietę do geom_vline w ggplot2
Jak dodać średnią linię do wykresu w ggplot2
Jak zmienić kolory linii w ggplot2