I\'m trying to run two things: first, I\'m creating a PDF with 4x5, ending with dev.off(), and then trying to create a new graph. However, after starting the second plot, I get:
I just ran into this problem after changing my system locale.
Check your locale using Sys.getlocale()
.
Change it to appropriate one using Sys.setLocale("LC_ALL","ENG")
(replace "ENG" with appropriate one)
I can't say with certainty which locale would be appropriate, but it seems to be coherent with default OS one.
Hope this helps!