master
map
unnest
cut
describe_temp <- function(temp) { if (temp <= 0) { "freezing" } else if (temp <= 10) { "cold" } else if (temp <= 20) { "cool" } else if (temp <= 30) { "warm" } else { "hot" } }
<
<=