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

【在R编程中计算向量之间的并行最小值和最大值– pmin()和pmax()函数】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] 07 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

    推荐阅读