當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R語言 arrows()用法及代碼示例


arrows()R語言中的函數用於在指定圖形上的點之間創建箭頭。

用法: arrows(x0, y0, x1, y1, length)

參數:
x0:表示繪製箭頭的點的 x 坐標
y0:表示繪製箭頭的點的 y 坐標
x1:表示繪製箭頭的點的 x 坐標
y1:表示繪製箭頭的點的 y 坐標
length:表示箭頭邊的長度(以英寸為單位)

範例1:


# Specifying points
x0 <- 1
y0 <- 1
x1 <- 5
y1 <- 5
x <- c(x0, x1)
y <- c(y0, y1)
  
# Output to be present as PNG file
png(file = "arrows1GFG.png")
  
# Create plot graph
plot(x, y, main = "Arrows Function")
  
# Create arrow between the points
arrows(x0, y0, x1, y1)
  
# Saving the file
dev.off()

輸出:

範例2:


# Specifying points
x <- runif(10, 0, 1)
y <- runif(10, 1, 5)
  
# Output to be present as PNG file
png(file = "arrows2GFG.png")
  
# Create plot graph
plot(x, y, main = "Arrows Function")
  
# Create arrow between the points
s <- seq(length(x) - 1)
arrows(x[s], y[s], x[s + 1], y[s + 1])
  
# Saving the file
dev.off()

輸出:




相關用法


注:本文由純淨天空篩選整理自utkarsh_kumar大神的英文原創作品 Plot Arrows Between Points in a Graph in R Programming – arrows() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。