Open upascal opened 1 year ago
When I was doing the problem 1 assignment I kept getting an answer wrong and, for the longest time, I couldn't figure out why.
Finally, I realized that the problem was that I included rm.na instead of na.rm in the function.
rm.na
na.rm
I guess in my mind I was thinking "remove NA" not "NA remove"
Oops!
Sometimes errors can be identified from error messages, which is also an important skill!
When I was doing the problem 1 assignment I kept getting an answer wrong and, for the longest time, I couldn't figure out why.
Finally, I realized that the problem was that I included
rm.na
instead ofna.rm
in the function.I guess in my mind I was thinking "remove NA" not "NA remove"
Oops!