Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 보조정렬
- JavaScript
- NPM
- vaadin
- mybatis
- MSSQL
- hadoop
- GIT
- IntelliJ
- Express
- SQL
- tomcat
- plugin
- SSL
- Python
- Android
- es6
- react
- Sqoop
- Java
- Spring
- SPC
- Eclipse
- Kotlin
- mapreduce
- xPlatform
- window
- table
- 공정능력
- R
Archives
- Today
- Total
DBILITY
R control statements ( 제어문 ) 본문
반응형
프로그래밍언어의 기본과 같다.
코드를 보면 바로 이해되지 않을까?!
> x<-3
> y<-1
> if(x>y){
+ print("크다")
+ print("알지?")
+ }else{
+ print("작다")
+ print("모르니?")
+ }
[1] "크다"
[1] "알지?"
> x<-1:6
#삼항연산자
> ifelse(x%%2==0,"even", "odd")
[1] "odd" "even" "odd" "even" "odd" "even"
#foreach와 같다
> for(x in 1:5) {
+ print(x)
+ }
[1] 1
[1] 2
[1] 3
[1] 4
[1] 5
> x<-1
> while (x<=5) {
+ print(x)
+ x<-x+1
+ }
[1] 1
[1] 2
[1] 3
[1] 4
[1] 5
#next는 continue
> for(x in 1:5) {
+ if(x%%2!=0) next
+ print(x)
+ }
[1] 2
[1] 4
#break
> x<-1> repeat {
+ if(x>5) {
+ break
+ }
+ print(x)
+ x<-x+1
+ }
[1] 1
[1] 2
[1] 3
[1] 4
[1] 5
반응형
'statistics > R' 카테고리의 다른 글
R user defined function, variable scope ( 사용자 정의 함수와 변수의 스코프 ) (0) | 2018.11.23 |
---|---|
R arithmetic operation and deal with NA (Not Assign-missing data) (0) | 2018.11.23 |
R type casting ( 데이터 형 변환 ) (0) | 2018.11.23 |
R data type array, dataframe (배열, 데이터프레임) (0) | 2018.11.22 |
R data type array (행렬) (0) | 2018.11.21 |
Comments