Skip to content

Latest commit

 

History

History
46 lines (26 loc) · 1.25 KB

File metadata and controls

46 lines (26 loc) · 1.25 KB

Record-Lab-Guides

A collection of guides for working in the Record Lab and Computational Ecology Lab

Online books/courses

Cheatsheets

Interesting blogs

Error trapping

try()

x <- try(log("a"))
if (inherits(x, "try-error")) {
  stop("oooof!")
}

tryCatch()