I want to build a time series with ggplot()
, a timeline created using strptime()
.
So far, good: I get German abbreviations for months on the time axis, my language is set to Sys.setlocale("LC_TIME"="de_DE.UTF-8")
. When I do months()
with my data, they also appear in German.
Strange: when I set my locale to Sys.setlocale("LC_TIME"="en_GB.UTF-8")
, months()
will give me the English months, BUT ggplot()
will continue to have GERMAN abbreviations for several months on the time axis .
I tried the other Sys.setlocale()
categories, but to no avail.
Where can ggplot()
get information about which language to choose?
source share