Come aggiungere un'etichetta a geom_vline in ggplot2
Puoi utilizzare la seguente sintassi di base per aggiungere un’etichetta a una linea verticale in ggplot2:
+ annotate(" text ", x= 9 , y= 20 , label=" Here is my text ", angle= 90 )
Gli esempi seguenti mostrano come utilizzare questa sintassi nella pratica.
Esempio 1: aggiungi un’etichetta a geom_vline
Il codice seguente mostra come aggiungere un’etichetta a una linea verticale 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 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 )
Esempio 2: aggiungi un’etichetta personalizzata a geom_vline
Il codice seguente mostra come utilizzare gli argomenti dimensione e colore per aggiungere un’etichetta con dimensione e colore personalizzati a una linea verticale 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 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 ")
Esempio 3: aggiungere più etichette a geom_vline
Il codice seguente mostra come utilizzare la funzione annotate() più volte per aggiungere più etichette a una linea verticale 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 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 ")
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 tracciare una linea di regressione lineare in ggplot2
Come impostare i limiti degli assi in ggplot2
Come creare grafici affiancati in ggplot2