當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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