R语言中的pmin()函数用于返回输入向量的并行最小值。
语法:pmin(x1, x2)
参数:
x1:向量一
x2:向量二
范例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()函数返回两个或多个输入向量的并行最大值。
语法:pmax(x1, x2)
参数:
x1:向量一
x2:向量二
范例:
# 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
评论前必须登录!
注册