วิธีเพิ่มป้ายกำกับให้กับ geom_vline ใน ggplot2
คุณสามารถใช้ไวยากรณ์พื้นฐานต่อไปนี้เพื่อเพิ่มป้ายกำกับให้กับเส้นแนวตั้งใน 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
รหัสต่อไปนี้แสดงวิธีใช้อาร์กิวเมนต์ ขนาด และ สี เพื่อเพิ่มป้ายกำกับที่มีขนาดและสีที่กำหนดเองให้กับเส้นแนวตั้งใน 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
รหัสต่อไปนี้แสดงวิธีใช้ฟังก์ชัน คำอธิบายประกอบ () หลายครั้งเพื่อเพิ่มป้ายกำกับหลายรายการให้กับเส้นแนวตั้งใน 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 ")
คุณสามารถใช้ฟังก์ชัน คำอธิบายประกอบ () ได้บ่อยเท่าที่คุณต้องการเพิ่มป้ายกำกับให้พล็อตได้มากเท่าที่คุณต้องการ
แหล่งข้อมูลเพิ่มเติม
บทช่วยสอนต่อไปนี้จะอธิบายวิธีดำเนินการงานทั่วไปอื่นๆ ใน ggplot2:
วิธีการพล็อตเส้นการถดถอยเชิงเส้นใน ggplot2
วิธีตั้งค่าขีดจำกัดแกนใน ggplot2
วิธีสร้างแปลงแบบเคียงข้างกันใน ggplot2