已知 \[攝氏 = \frac{5}{9} \times (華氏 - 32)\]
請撰寫一個「攝氏轉華氏」的函數 c2f()
,使其能接受一個「攝氏溫標」的輸入,並輸出此溫度的「華氏溫標」。
c2f <- function(celsius) {
# write your code here
fahrenheit = celsius * 9/5 + 32
return(fahrenheit)
}
# 請勿更動此行之下的程式碼
c2f(100)
c2f(0)
c2f(37.5)
# should print out:
#> [1] 212
#> [1] 32
#> [1] 99.5
#> [1] 212
#> [1] 32
#> [1] 99.5
上方的函數 concat3()
能將使用者輸入的 3 個值串在一起輸出成字串,例如:
#> [1] "3 2 1"
請修改下方程式碼,使 concat3()
可以印出 "3 1 2"
。除此之外,請遵守下方的兩個限制:
1
, 第二個是 3
, 第三個是 2
)只能給予其中一個 Argument 名稱,例如:
#> [1] "3 1 2"
上方的 students
儲存著 35 筆學生的年級 (1 至 5 年級) 資料。 請計算出高年級 (4 & 5 年級) 學生的人數與比例:
#> [1] 14
# 高年級比例 (10 分)
# Write your code here
sum(students >= 4) / length(students)
# Should print out
#> [1] 0.4
#> [1] 0.4
承上題,請修改 students
內的元素,將年級改以英文 (Freshman, Sophomore, Junior, Senior) 表達:
# Hint: 注意資料類型與 Coercion (可能會用到 as.character())
# Write your code here
students[students >= 4] <- c('Senior')
students[students == '3'] <- c('Junior')
students[students == '2'] <- c('Sophomore')
students[students == '1'] <- c('Freshman')
# DO NOT modify the code below
students
# should print out:
#> [1] "Freshman" "Senior" "Senior" "Freshman" "Senior" "Senior"
#> [7] "Freshman" "Junior" "Sophomore" "Senior" "Senior" "Senior"
#> [13] "Junior" "Senior" "Sophomore" "Freshman" "Senior" "Senior"
#> [19] "Sophomore" "Sophomore" "Freshman" "Senior" "Junior" "Senior"
#> [25] "Sophomore" "Senior" "Freshman" "Junior" "Junior" "Senior"
#> [31] "Junior" "Sophomore" "Freshman" "Sophomore" "Sophomore"
#> [1] "Freshman" "Senior" "Senior" "Freshman" "Senior" "Senior"
#> [7] "Freshman" "Junior" "Sophomore" "Senior" "Senior" "Senior"
#> [13] "Junior" "Senior" "Sophomore" "Freshman" "Senior" "Senior"
#> [19] "Sophomore" "Sophomore" "Freshman" "Senior" "Junior" "Senior"
#> [25] "Sophomore" "Senior" "Freshman" "Junior" "Junior" "Senior"
#> [31] "Junior" "Sophomore" "Freshman" "Sophomore" "Sophomore"
# DO NOT Modify the code here
students2 <- c(2, 2, 3, 1, 4, 3, 1, 4, 1, 3, 1, 2, 1, 4, 3, 1, 4, 4, 1, 3)
此題與前面的 Vector I 一樣會用到學生的年級資料。與前面不同的是,students2
裡的年級只有 1 至 4 年級。
在這題,同學需要撰寫一個函數 grade_precentage()
,用來計算 students2
裡面各年級的比例。這個函數有兩個參數:
grades
: 學生的年級。可以傳入一個或多個值,例如 2
, c(1, 2)
或 c("Freshman", "Junior")
。函數會回傳 grades
裡的年級所佔的學生比例。students
: 學生年級資料這個函數特別的地方在於它能容許不同資料類型的輸入:不管使用者在 grades
裡輸入的是數值 (1 至 4) 或是英文 (Freshman, Sophomore, Junior, Senior),它都能算出正確的年級比例資訊。
(Hint: 這題可能會用到 is.character()
與 as.character()
。 他們的功能分別是確認資料類型是否為字串以及將其它資料類型轉換成字串。詳見說明文件)
grade_percentage <- function(grades, students) {
# Modify the code below
if (is.character(grades)) {
grades[grades == 'Freshman'] <- c('1')
grades[grades == 'Sophomore'] <- c('2')
grades[grades == 'Junior'] <- c('3')
grades[grades == 'Senior'] <- c('4')
grades <- as.character(grades)
}
precentage <- mean(students %in% grades)
return(precentage)
}
# DO NOT modify the code below
grade_percentage(grades = 3, students = students2)
grade_percentage(grades = "Junior", students = students2)
grade_percentage(grades = c(3, 4), students = students2)
grade_percentage(grades = c("Junior", "Senior"), students = students2)
# Should print out
#> [1] 0.25
#> [1] 0.25
#> [1] 0.5
#> [1] 0.5
#> [1] 0.25
#> [1] 0.25
#> [1] 0.5
#> [1] 0.5
我們假設一組有效的密碼必須符合以下條件:
請同學針對以上條件,撰寫一個函數 check_password()
,判斷傳入的字串是否為有效密碼。如果是有效密碼,請回傳 Valid Password
;如果是無效密碼,請回傳 INVALID
。除此之外,請遵守下方的限制:
grepl()
或 Base R 以外的套件)提示:
strsplit()
來將輸入的密碼拆成一個個字元,例如,將 "abc123"
變成 "a" "b" "c" "1" "2" "3"
。注意:strsplit()
所回傳的資料結構是尚未教過的 list
。%in%
以及布林運算子 any()
check_password <- function(pw){
lst <- unlist(strsplit(pw, ""))
result = length(lst) > 5
result <- result & any(lst %in% LETTERS)
result <- result & any(lst %in% letters)
result <- result & any(lst %in% 0:9)
result <- result & (! any(lst == ' '))
if (result) return("Valid Password")
else return("INVALID")
}
# DO NOT modify the code below
check_password("rLads2019")
check_password("rlads2019")
check_password("RLADS2019")
check_password("rLadsrLads")
check_password("rLads 2019")
check_password("rLad2")
# Should print out
#> [1] "Valid Password"
#> [1] "INVALID"
#> [1] "INVALID"
#> [1] "INVALID"
#> [1] "INVALID"
#> [1] "INVALID"
#> [1] "Valid Password"
#> [1] "INVALID"
#> [1] "INVALID"
#> [1] "INVALID"
#> [1] "INVALID"
#> [1] "INVALID"