-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNote4_ControlFlow_H24071126葉嘉浤.Rmd
196 lines (188 loc) · 3.83 KB
/
Note4_ControlFlow_H24071126葉嘉浤.Rmd
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
---
title: "Note_ControlFlow_H24071126葉嘉浤"
author: "H24071126葉嘉浤"
date: "2020/5/4"
output: html_document
---
# 1.For迴圈
## 一種疊代的陳述,能夠讓程式碼反覆執行
## for迴圈能夠知道在疊代過程中的執行順序
句法:
for (index in vector) commands
```{}
index:每執行一次迴圈,index就改變一次
vector:index可能的範圍
commands:迴圈的指令
```
```{r}
vec.X.v2 <- rep(NA, 8)
vec.X.v2[1] <- 3
for(n in 1:7){
vec.X.v2[n+1] <- 2 * vec.X.v2[n] + 3
}
vec.X.v2
vec.X.v2[2:8]
n <- 10
ans <- 1
for(j in n:1){
ans <- ans * j
}
ans
#用迴圈計算階乘
n <- 10
ans <- 1
for(j in n:1){
ans <- ans * j
}
ans
#用簡單的迴圈生成隨機變數
x0 <- 3; a <- 5; c <- 7; m <- 501
X <- rep(NA, 10)
for(j in 1:10){
x0 <- (a*x0+c) %% m
X[j] <- x0
}
X
round(X/m, 2)
```
# 2.If
## 用於判斷條件
句法:
if (condition) {commands when TRUE}
if (condition) {commands when TRUE} else {commands when FALSE}
```{}
*當變數的判斷是false時,else()提供另外一個指令
*else()的句法為選擇性,可用也可以不用
當條件只有一個時:
One condition:
if (condition) {
commands when
TRUE
} else {
commands when
FALSE
}
當條件有多個時:
Multiple conditions:
if (condition1) {
commands when condition1 is TRUE
} else if (condistion2) {
commands when condition2 is TRUE
} else {
commands when condition1 and condition2
are FALSE
}
```
```{r}
#尋找NA值所在的位置
C <- c(3, 4, NA, 12, 0.2, NA, -2)
for(i in 1:7){
if(is.na(C[i])) print(i)
}
#尋找每個分類的數量
basket <- c("r", "b", "y", "y", "y", "r", "r", "b")
n.r <- 0; n.b <- 0; n.y <- 0
for(i in 1:length(basket)){
if(basket[i] == "r"){
n.r <- n.r + 1
}else if(basket[i] == "b"){
n.b <- n.b + 1
}else{
n.y <- n.y + 1
}
}
c(n.r, n.b, n.y)
#將每個分類重新分配一個值
v.basket <- rep(NA, length(basket))
for(i in 1:length(basket)){
if(basket[i] == "r"){
v.basket[i] <- 1
}else if(basket[i] == "b"){
v.basket[i] <- 2
}else{
v.basket[i] <- 3
}
}
v.basket
#用 ifelse()重新分配每個分類的值
v.basket <- ifelse(basket == "r", 1, ifelse(basket == "b", 2, 3))
v.basket
```
# 3.while迴圈
## 重複的模式未知,為了讓變數滿足條件,須事前做運算
句法:
while (condition) statements
```{}
*當變數判斷為false時,迴圈不會有任何反應
*當變數判斷為true時,迴圈會持續執行,條件會不斷用來判斷,重複執行此過程
```
```{r}
#與for迴圈比較
for(j in 1:8){
print(j)
}
j <- 1 #需初始化
while(j <= 8){ #停止的條件
print(j) #疊代
j <- j + 1
}
#計算丟幾次硬幣會出現正面
#0:反面;1:正面
coin <- c(0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0,
1, 1, 0, 1, 1, 0, 0, 0, 1, 0, 1)
N <- c()
j <- 1
while(j <= length(coin)){
n.fail <- 0
while(coin[j] != 1){
n.fail <- n.fail + 1
j <- j + 1
}
N <- c(N, n.fail + 1)
j <- j + 1
}
N
```
# 4.Break、Repeat、Next
## Break
### 立刻中止迴圈,可用於for迴圈與while迴圈
句法:
if (condition) break
```{r}
Fib1 <- 1;Fib2 <- 1
Fibonacci <- c(Fib1)
for(j in 1:1000){
if(Fib2 < 100){
Fibonacci <- c(Fibonacci, Fib2)
Fib1 <- Fibonacci[length(Fibonacci) - 1]
Fib2 <- Fib1 + Fibonacci[length(Fibonacci)]
}else{
break
}
}
Fibonacci
```
## Repeat
### 類似while迴圈,差別在Repeat的條件能寫在任何地方,並用Break跳出迴圈
句法:
repeat { statements }
```{r}
i <- 1
result <- 0
repeat{
if(i>100) break
result <- result+i
i <- i+1
}
result
```
## Next
### 遇到特殊情況需跳出迴圈可使用,可使用在任何迴圈
```{r}
for(i in 1:10){
if(i==5){
next
}
print(i)
}
```