Back
I just want to change the locale, when I am changing that, there is an output to the console:
> Sys.setlocale("LC_TIME", "de_DE")[1] "de_DE"
> Sys.setlocale("LC_TIME", "de_DE")
[1] "de_DE"
How can I switch off this output?
For that, you can simply use the invisible(), in R programming:
invisible(Sys.setlocale("LC_TIME", "de_DE"))
31k questions
32.8k answers
501 comments
693 users