상세 컨텐츠

본문 제목

[개미의 걸음 ADsP 3과목] R에서의 조건문[if, ifelse, switch]

자격증/ADsP

by IT개미 데이터 2020. 9. 2. 17:17

본문

728x90

① If(조건){조건이 참일때 수행} else{조건이 거짓일 때 수행}

if(condition){cons.expr}else{alt.expr}

 

  • sum(x)가 sum(y)보다 항상 작으므로 if (sum(x)>sum(y)) {print(x)}는 값이 출력되지 않음

 

② Ifelse(조건, 참, 거짓)

if(condition,true,false)

 

③ switch(변수, 실행문1, 실행문2...)

switch(expr, value1, value2.....)

 

 

 

 

728x90

관련글 더보기

댓글 영역