try_na silly wrapper for try function that returns an NA if an error is found. TO BE DEPRECATED IN FUTURE VERSIONS.
Usage
try_na(expr, silent = TRUE, outFile)
Arguments
expr
An R expression to try.
silent
Logical to control whether the report of error messages is suppressed. Default is TRUE.
outFile
A connection, or a character string naming the file to print to
(via cat(*, file = outFile)); used only if silent is false, as by default.
Value
Returns an `NA` if any error occurs during the evaluation of a expression.
If not, it will return the result of the evaluation.
Details
This is a silly wrapper on try that returns an `NA` if any error occurs during the evaluation of a expression. See try for details.
References
Araya-Salas, M., & Smith-Vidaurre, G. (2017). warbleR: An R package to streamline analysis of animal acoustic signals. Methods in Ecology and Evolution, 8(2), 184-191.