Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in R Programming by (50.2k points)

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"

How can I switch off this output?

1 Answer

0 votes
by (108k points)

For that, you can simply use the invisible(), in R programming:

invisible(Sys.setlocale("LC_TIME", "de_DE"))

Browse Categories

...