Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR R

how to use ifelse in r

> a = c(5,7,2,9)
> ifelse(a %% 2 == 0,"even","odd")
[1] "odd"  "odd"  "even" "odd" 
Source by www.datamentor.io #
 
PREVIOUS NEXT
Tagged: #ifelse
ADD COMMENT
Topic
Name
5+4 =