วิธีใช้ xlim() และ ylim() ใน r
คุณสามารถใช้ฟังก์ชัน xlim() และ ylim() เพื่อตั้งค่าขีดจำกัดของแกน x และแกน y ของแปลงใน R
ตัวอย่างต่อไปนี้แสดงวิธีใช้ฟังก์ชันเหล่านี้ในทางปฏิบัติ
ตัวอย่างที่ 1: ใช้ xlim() เพื่อตั้งค่าขีดจำกัดแกน X
รหัสต่อไปนี้แสดงวิธีการสร้าง Scatterplot ใน R และระบุขีดจำกัดของแกน x โดยใช้ฟังก์ชัน xlim()
#define data frame df <- data. frame (x=c(1, 3, 4, 5, 7, 9), y=c(7, 7, 8, 12, 15, 19)) #create scatterplot with x-axis limits ranging from 0 to 20 plot(df$x, df$y, pch=19, xlim=c(0, 20))
ตัวอย่างที่ 2: ใช้ ylim() เพื่อตั้งค่าขีดจำกัดแกน Y
รหัสต่อไปนี้แสดงวิธีการสร้าง Scatterplot ใน R และระบุขีดจำกัดของแกน y โดยใช้ฟังก์ชัน ylim()
#define data frame df <- data. frame (x=c(1, 3, 4, 5, 7, 9), y=c(7, 7, 8, 12, 15, 19)) #create scatterplot with y-axis limits ranging from 0 to 30 plot(df$x, df$y, pch=19, ylim=c(0, 30))
ตัวอย่างที่ 3: ใช้ xlim() และ ylim() เพื่อตั้งค่าขีดจำกัดแกน
รหัสต่อไปนี้แสดงวิธีการสร้าง Scatterplot ใน R และระบุทั้งขอบเขตของแกน x และแกน y:
#define data frame df <- data. frame (x=c(1, 3, 4, 5, 7, 9), y=c(7, 7, 8, 12, 15, 19)) #create scatterplot and specify both x-axis limits and y-axis limits plot(df$x, df$y, pch=19, xlim=c(0, 20), ylim=c(0, 30))
แหล่งข้อมูลเพิ่มเติม
วิธีตั้งค่าขีดจำกัดแกนใน ggplot2
วิธีตั้งค่าตัวแบ่งแกนใน ggplot2
วิธีสร้างมาตราส่วนลอการิทึมใน ggplot2
วิธีสร้างพล็อตล็อกล็อกใน R