Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR R

absolute value in r

x <- abs(x)

#Also works with vectors
x = c(1,-2)
x <- abs(x)
#x will be the vector [1,2]
 
PREVIOUS NEXT
Tagged: #absolute
ADD COMMENT
Topic
Name
6+3 =