当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R语言 sign()用法及代码示例


sign()R语言中的函数用于查找作为参数提供的数字向量的元素的符号。它不适用于复杂向量。

用法: sign(x)

参数:
x表示数值向量

返回:1 代表正数,-1 代表负数

范例1:




# Create a variable
x <- 1
y <- -100
  
# Check sign
cat("Sign of x:", sign(x), "\n")
cat("Sign of y:", sign(y))

输出:

Sign of x:1 
Sign of y:-1

范例2:


# Creating a vector
x <- c(1, 5, 0, -10, 100, -20, 10, -69)
  
# Check Sign
cat("Sign of elements of vector x:", sign(x), "\n")

输出:

Sign of elements of vector x: 1 1 0 -1 1 -1 1 -1 

相关用法


注:本文由纯净天空筛选整理自utkarsh_kumar大神的英文原创作品 Get the Sign of Elements of a Numeric Vector in R Programming – sign() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。