Module #11 Assignment

 3/24/34

This week, we are tasked with debugging R code. 

First, I copied the bugged code into RStudio in order to see the error it returns. I also installed and loaded the "outliers" package.

I also ran debug(tukey_multiple):

After further investigation, I found that the && operator is used when instead, & operator should be used. && only evaluates the second expression if the first one is true.

Comments