I want to check if some variable is already defined in R without getting an error. How to dot this?
Below is my trial, but I could not succeed in it.
> is.na(qqaaa)
Error: object 'qqaaa' not found
> is.finite(qqaaa)
Error: object 'qqaaa' not found
Thanks!