Jak dodać etykietę do geom_vline w ggplot2


Możesz użyć następującej podstawowej składni, aby dodać etykietę do linii pionowej w ggplot2:

 + annotate(" text ", x= 9 , y= 20 , label=" Here is my text ", angle= 90 )

Poniższe przykłady pokazują, jak używać tej składni w praktyce.

Przykład 1: Dodaj etykietę do geom_vline

Poniższy kod pokazuje, jak dodać etykietę do linii pionowej 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 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 ) 

Przykład 2: Dodaj niestandardową etykietę do geom_vline

Poniższy kod pokazuje, jak używać argumentów rozmiaru i koloru , aby dodać etykietę o niestandardowym rozmiarze i kolorze do linii pionowej 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 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 ") 

Przykład 3: Dodaj wiele etykiet do geom_vline

Poniższy kod pokazuje, jak wielokrotnie używać funkcji annotate() w celu dodania wielu etykiet do linii pionowej 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 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 ") 

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 wykreślić linię regresji liniowej w ggplot2
Jak ustawić limity osi w ggplot2
Jak tworzyć wykresy obok siebie w ggplot2

Dodaj komentarz

Twój adres e-mail nie zostanie opublikowany. Wymagane pola są oznaczone *