According to the documentation, source()
takes a default option echo = verbose
, which can get old fast when testing functions. How can I set this to be FALSE just for source()
in a simple way (such as an .Rprofile setting)?
I tried setting options(echo=FALSE)
but that throws a wrench in the terminal functioning:
> options(echo=FALSE)
5
[1] 5
options(echo=TRUE)
>