Loading...
20151005
[Coursera]
R Programming
(7)
整理自
R Programming
(Week
2)
--
Control Structures
[ Week 2 課程內容 ]
Control Structures - Introduction
[0:54]
Control Structures - If-else
[1:58]
Control Structures - For loops
[4:25]
Control Structures - While loops
[3:22]
Control Structures - Repeat, Next, Break
[4:57]
Your First R Function
[10:29]
Functions
(part
1)
[9:17]
Functions
(part
2)
[7:13]
Scoping Rules - Symbol Binding
[10:32]
Scoping Rules - R Scoping Rules
[8:34]
Scoping Rules - Optimization Example
(OPTIONAL)
[9:21]
Coding Standards
[8:59]
Dates and Times
[10:29]
[ 筆記內容 ]
< 控制結構 >
Introduction
(一)
If-else
(二)
For loops
(三)
While loops
(四)
Repeat loops、 Next、 Break
[ 補充資料 ]
第 5 章: 常用的 R 程式語言
機率分佈大數法則、中央極限定理 - 吳漢銘
R: Binomial Distribution
Quick-R: Control Structures
Chapter 5 - 流程控制
< 控制結構 >
Introduction
[
參考資料
]
課堂講義 :
https://d396qusza40orc.cloudfront.net/rprog/lecture_slides/control_intro.pdf
[ 重點整理 ] 常用的結構
If、else
常用在
執行具有特定條件
的程式。
for
for迴圈,常用來
執行特定次數
的程式。
while
while迴圈,當
條件符合
時就會執行指定的程式。
repeat
無限迴圈
。
Please turn on JavaScript to use Paper in all of its awesomeness. ^_^
整理自 R Programming (Week 2) -- Control Structures
< 控制結構 > Introduction