I have a long R script that throws some warnings, which I can ignore.
I could use
suppressWarnings(expr)
for single statements. But how can I suppress warnings in R globally? Is there an option for this?
I have a long R script that throws some warnings, which I can ignore.
I could use
suppressWarnings(expr)
for single statements. But how can I suppress warnings in R globally? Is there an option for this?