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
相关用法
- R语言 is.numeric()用法及代码示例
- R语言 which.min()用法及代码示例
- R语言 which.max()用法及代码示例
- R语言 jitter()用法及代码示例
- R语言 as.vector()用法及代码示例
- R语言 is.vector()用法及代码示例
- R语言 range()用法及代码示例
- R语言 structure()用法及代码示例
- R语言 between()用法及代码示例
- R语言 cumprod()用法及代码示例
- R语言 cumsum()用法及代码示例
- R语言 atanh()用法及代码示例
- R语言 asinh()用法及代码示例
- R语言 acosh()用法及代码示例
- R语言 data.matrix()用法及代码示例
注:本文由纯净天空筛选整理自utkarsh_kumar大神的英文原创作品 Get the Sign of Elements of a Numeric Vector in R Programming – sign() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。