Come aggiungere un'etichetta a geom_hline in ggplot2
Puoi utilizzare la seguente sintassi di base per aggiungere un’etichetta a una linea orizzontale in ggplot2:
+ annotate(" text ", x= 9 , y= 20 , label=" Here is my text ")
Gli esempi seguenti mostrano come utilizzare questa sintassi nella pratica.
Esempio 1: aggiungi un’etichetta a geom_hline
Il codice seguente mostra come aggiungere un’etichetta a una linea orizzontale in 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 ")
Esempio 2: aggiungi un’etichetta personalizzata a geom_hline
Il codice seguente mostra come utilizzare gli argomenti dimensione e colore per aggiungere un’etichetta con dimensione e colore personalizzati a una linea orizzontale in 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 ")
Esempio 3: aggiungi più etichette a geom_hline
Il codice seguente mostra come utilizzare la funzione annotate() più volte per aggiungere più etichette a una linea orizzontale in 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 ")
Sentiti libero di utilizzare la funzione annotate() tutte le volte che vuoi per aggiungere tutte le etichette che desideri alla trama.
Risorse addizionali
I seguenti tutorial spiegano come eseguire altre attività comuni in ggplot2:
Come aggiungere un’etichetta a geom_vline in ggplot2
Come aggiungere la linea media alla trama in ggplot2
Come cambiare i colori delle linee in ggplot2