Error Handling in R


What is an Exception?

An unwanted situation that may arise while your code is getting exected is called an Exception e.g when your code attempts to divide a value by zero.

Exception Handling

Exception handling is the process of handling the errors that might occur in the code and avoid abrupt halt of the code. In simple English, our code should either end by performing the intended task or prints a useful message if it is not able to complete the task.


We have this code which has non-numeric value in the list and we are trying to divide  5 with every element of vector v

#a list with one non numeric value
v<-list(1,2,4,'0',5)

for (i in v) {
  print(5/i)
}



Here we can see that the code has not printed any result and has stopped abruptly.
To avoid these situations we use exception handling constructs available in R

Exception Handling Constructs in R

  1. try
  2. tryCatch

Using try

We need to enclose the objectionable statements in the try block. The statements passed inside are like arguments to a function. In case you have more than one statements, it is preferred that you write a function with all those statements and call the function inside the try block

v<-list(1,2,4,'0',5)
for (i in v) {
  try(print(5/i))
}



Using the try block we can see the code ran for all the other cases even after the error in one of the iteration.

Using tryCatch

The try block will not let your code stop but does not provide any mechanism to handle the exception. By handling I mean the actions we want to perform if some error occurs in code execution.
In this case, we can use the tryCatch block to handle the exception.
We will enclose the objectionable statement in the tryCatch block and pass one more parameter to the tryCatch, error.

The error takes as input a function or an instruction and we can perform all the remedial steps to be performed in case of an error in this function.

v<-list(1,2,4,'0',5) for (i in v) { tryCatch(print(5/i),error=function(e){ print("Non conformabale arguments") }) }


I hope this helps you in understanding the error handling concepts in R.


You might also want to read:


Subscribe to Techscouter for updates on article related to ML, Data Mining, Programming languages, and current market trends.
Author: Japneet Singh

Happy Learning

Comments

Popular posts from this blog

Word Vectorization

Spidering the web with Python

Machine Learning -Solution or Problem