plot() 函數被定義為 R 語言繪圖的通用函數。它可用於創建不同類型的基本圖形。
用法:
plot(x, y, type)
參數:
x and y:要繪製的點坐標
type:要創建的圖形類型
返回:不同類型的地塊
範例1:
# R program to plot a graph
# Values for x and y axis
x <- 1:5; y = x * x
# Using plot() function
plot(x, y, type = "l")
plot(x, y, type = "h")
在上麵的例子中 type=“l” 代表線圖,type=“h” 代表 ‘histogram’ 就像垂直線。
範例2:
# R program to plot a graph
# Creating x and y-values
x - 1:5; y = x * x
# Using plot function
plot(x, y, type = "b")
plot(x, y, type = "s")
plot(x, y, type = "p")
在這裏,在上麵的例子中 type=“b” 代表兩者,這意味著點由一條線連接
type=“s” 表示樓梯台階
type=“p” 表示點(默認情況下)。
相關用法
- R語言 persp()用法及代碼示例
- R語言 points()用法及代碼示例
- R語言 lines()用法及代碼示例
- R語言 arrows()用法及代碼示例
- R語言 dgeom()用法及代碼示例
- R語言 pairs()用法及代碼示例
- R語言 axis()用法及代碼示例
- R語言 abline()用法及代碼示例
- R語言 data.matrix()用法及代碼示例
- R語言 with()用法及代碼示例
- R語言 sample()用法及代碼示例
注:本文由純淨天空篩選整理自kaurbal1698大神的英文原創作品 Plotting of Data using Generic plots in R Programming – plot() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。