A set of standard functions useful in day to day analysis and programming.
Examples
1
2
3
4
5
6
7
8
# the examlpe below shows a simple try catch function# assignig an object that does not exist does not through an error# instead it returns null>x=TRY(qwsqw)>is.null(x)[1]TRUE