6.1 if statements

# make a modification to this function
k_c <- function(temp_k) {
    if (temp_k < 0) {
        warning('you passed in a negative Kelvin number')
        # stop()
        return(NA)
    }
    temp_c <- temp_k - 273.15
    return(temp_c)
}
k_c(-9)
## Warning in k_c(-9): you passed in a negative Kelvin number
## [1] NA

Our current function does not deal with missing numbers

k_c(NA)
Error in if (temp_k < 0) { : missing value where TRUE/FALSE needed
k_c(0)
## [1] -273.15