📌  相关文章
📜  在 R 编程中计算向量之间的平行最小值和最大值 - pmin() 和 pmax() 函数

📅  最后修改于: 2022-05-13 01:54:44.093000             🧑  作者: Mango

在 R 编程中计算向量之间的平行最小值和最大值 - pmin() 和 pmax() 函数

R 语言中的pmin()函数用于返回输入向量的平行最小值。

示例 1:

# R program to illustrate
# pmin() function
  
# First example vector
x1 <- c(2, 9, 5, 7, 1, 8)  
   
# Second example vector            
x2 <- c(0, 7, 2, 3, 9, 6)  
  
# Application of pmin() in R
pmin(x1, x2)                               

输出:

[1] 0  7 2 3 1 6

pmax()函数

pmax()函数返回两个或多个输入向量的并行最大值。

例子 :

# R program to illustrate
# pmax() function
  
# First example vector
x1 <- c(2, 9, 5, 7, 1, 8)  
   
# Second example vector            
x2 <- c(0, 7, 2, 3, 9, 6)  
  
# Application of pmax() in R
pmax(x1, x2)                                                              

输出:

[1] 2 9 5 7 9 8