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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。