วิธีเพิ่มเส้นแนวตั้งให้กับพล็อตโดยใช้ ggplot2
คุณสามารถเพิ่มเส้นแนวตั้งลงในแปลง ggplot2 ได้อย่างรวดเร็วโดยใช้ฟังก์ชัน geom_vline() ซึ่งใช้ไวยากรณ์ต่อไปนี้:
geom_vline(xintercept, linetype, สี, ขนาด)
ทอง:
- xintercept: ตำแหน่งที่จะเพิ่มเส้นบนจุดตัด x อาจเป็นค่าหนึ่งหรือหลายค่าก็ได้
- ประเภทเส้น: เส้นสไตล์. ค่าเริ่มต้นคือ “ทึบ” แต่คุณสามารถระบุ “twodash”, “longdash”, “dotted”, “dotdash”, “dash” หรือ “blank” ได้
- สี: สีของเส้น
- ขนาด: ความกว้างของเส้น
ตัวอย่างต่อไปนี้แสดงวิธีใช้ฟังก์ชันนี้ในทางปฏิบัติ
เพิ่มเส้นแนวตั้งเส้นเดียวให้กับเส้นทาง
รหัสต่อไปนี้แสดงวิธีการเพิ่มเส้นแนวตั้งเส้นเดียวให้กับการลงจุด:
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 )
เพิ่มเส้นแนวตั้งหลายเส้นให้กับเส้นทาง
รหัสต่อไปนี้แสดงวิธีการเพิ่มเส้นแนวตั้งหลายเส้นให้กับเส้นทาง:
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=6, 10, and 11 ggplot(df, aes (x=x, y=y)) + geom_point() + geom_vline(xintercept=c( 6, 10, 11 ))
ปรับแต่งเส้นแนวตั้ง
รหัสต่อไปนี้แสดงวิธีปรับแต่งเส้นแนวตั้งบนเส้นทาง:
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 customized vertical line ggplot(df, aes (x=x, y=y)) + geom_point() + geom_vline(xintercept= 5 , linetype=' dashed ', color=' blue ', size =2 )
หากคุณมีเส้นแนวตั้งหลายเส้นบนแผนภูมิ คุณสามารถระบุสีเฉพาะสำหรับแต่ละเส้นได้:
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 customized vertical lines ggplot(df, aes (x=x, y=y)) + geom_point() + geom_vline(xintercept=c( 5,7 ) , linetype=' dashed ', color=c(' blue ', ' red '))
แหล่งข้อมูลเพิ่มเติม
บทช่วยสอนต่อไปนี้จะอธิบายวิธีดำเนินการงานทั่วไปอื่นๆ ใน ggplot2:
วิธีการพล็อตเส้นการถดถอยเชิงเส้นใน ggplot2
วิธีตั้งค่าขีดจำกัดแกนใน ggplot2
วิธีสร้างแปลงแบบเคียงข้างกันใน ggplot2