29849/how-do-i-ignore-errors-in-r
With the try function you can handle errors to continue the execution (by ignoring the error):
try(log("not a number"), silent = TRUE) print("errors can't stop me")
## [1] "errors can't stop me"
R offers a command to save its ...READ MORE
Hey @Ali, its very simple one line ...READ MORE
There are multiple ways of getting this. ...READ MORE
Suppose l1 and l2 are my vectors, li = ...READ MORE
Basically here we are making an equation ...READ MORE
By assuming that all the values are ...READ MORE