class: center, middle, inverse, title-slide .title[ # Conditions ] .subtitle[ ## Mini-Lecture 12 ] .author[ ### Albert Y. Kim ] .date[ ###
SDS 270
2022-11-01
] --- background-image: url(gfx/dragons.png) background-size: contain --- class: center, inverse, middle # Conditions --- ## Two important concepts .pull-left[ Three types of conditions: - errors - warnings - messages (Recall R Markdown chunk options!) ] -- .pull-right[ Catching errors: - catching errors with `tryCatch()` ] --- ## Errors - `stop()` (or `rlang::abort()`) - Terminates execution immediately ```r my_filter <- function(x, ...) { if (!"wacky" %in% class(x)) { stop("x is not wacky") } dplyr::filter(x, ...) } class(starwars) <- c("wacky", class(starwars)) my_filter(starwars, name == "Chewbacca") ``` ``` ## # A tibble: 1 × 14 ## name height mass hair_color skin_…¹ eye_c…² birth…³ sex gender homew…⁴ ## <chr> <int> <dbl> <chr> <chr> <chr> <dbl> <chr> <chr> <chr> ## 1 Chewbacca 228 112 brown unknown blue 200 male mascu… Kashyy… ## # … with 4 more variables: species <chr>, films <list>, vehicles <list>, ## # starships <list>, and abbreviated variable names ¹skin_color, ²eye_color, ## # ³birth_year, ⁴homeworld ``` -- ```r my_filter(dplyr::starwars) ``` ``` ## Error in my_filter(dplyr::starwars): x is not wacky ``` --- ## Warnings - `warning()` (or `rlang::warn()`) - Execution continues ```r my_filter <- function(x, ...) { if (!"wacky" %in% class(x)) { * warning("x is not wacky") } dplyr::filter(x, ...) } my_filter(dplyr::starwars) ``` ``` ## Warning in my_filter(dplyr::starwars): x is not wacky ``` ``` ## # A tibble: 87 × 14 ## name height mass hair_…¹ skin_…² eye_c…³ birth…⁴ sex gender homew…⁵ ## <chr> <int> <dbl> <chr> <chr> <chr> <dbl> <chr> <chr> <chr> ## 1 Luke Skywa… 172 77 blond fair blue 19 male mascu… Tatooi… ## 2 C-3PO 167 75 <NA> gold yellow 112 none mascu… Tatooi… ## 3 R2-D2 96 32 <NA> white,… red 33 none mascu… Naboo ## 4 Darth Vader 202 136 none white yellow 41.9 male mascu… Tatooi… ## 5 Leia Organa 150 49 brown light brown 19 fema… femin… Aldera… ## 6 Owen Lars 178 120 brown,… light blue 52 male mascu… Tatooi… ## 7 Beru White… 165 75 brown light blue 47 fema… femin… Tatooi… ## 8 R5-D4 97 32 <NA> white,… red NA none mascu… Tatooi… ## 9 Biggs Dark… 183 84 black light brown 24 male mascu… Tatooi… ## 10 Obi-Wan Ke… 182 77 auburn… fair blue-g… 57 male mascu… Stewjon ## # … with 77 more rows, 4 more variables: species <chr>, films <list>, ## # vehicles <list>, starships <list>, and abbreviated variable names ## # ¹hair_color, ²skin_color, ³eye_color, ⁴birth_year, ⁵homeworld ``` --- ## Messages - `message()` (don't use `print()` or `cat()`) ```r my_filter <- function(x, ...) { if (!"wacky" %in% class(x)) { * message("x is not wacky") } dplyr::filter(x, ...) } my_filter(dplyr::starwars) ``` ``` ## x is not wacky ``` ``` ## # A tibble: 87 × 14 ## name height mass hair_…¹ skin_…² eye_c…³ birth…⁴ sex gender homew…⁵ ## <chr> <int> <dbl> <chr> <chr> <chr> <dbl> <chr> <chr> <chr> ## 1 Luke Skywa… 172 77 blond fair blue 19 male mascu… Tatooi… ## 2 C-3PO 167 75 <NA> gold yellow 112 none mascu… Tatooi… ## 3 R2-D2 96 32 <NA> white,… red 33 none mascu… Naboo ## 4 Darth Vader 202 136 none white yellow 41.9 male mascu… Tatooi… ## 5 Leia Organa 150 49 brown light brown 19 fema… femin… Aldera… ## 6 Owen Lars 178 120 brown,… light blue 52 male mascu… Tatooi… ## 7 Beru White… 165 75 brown light blue 47 fema… femin… Tatooi… ## 8 R5-D4 97 32 <NA> white,… red NA none mascu… Tatooi… ## 9 Biggs Dark… 183 84 black light brown 24 male mascu… Tatooi… ## 10 Obi-Wan Ke… 182 77 auburn… fair blue-g… 57 male mascu… Stewjon ## # … with 77 more rows, 4 more variables: species <chr>, films <list>, ## # vehicles <list>, starships <list>, and abbreviated variable names ## # ¹hair_color, ²skin_color, ³eye_color, ⁴birth_year, ⁵homeworld ``` --- ## Catching errors ```r add_safe <- function(x, y) { out <- tryCatch( # named function! error = function(cnd) { # stuff to do when error occurs 0 }, # what you are actually trying to do x + y ) return(out) } add_safe(3, 5) ``` ``` ## [1] 8 ``` ```r add_safe(4, "a") ``` ``` ## [1] 0 ```