Hello! I wrote a script file with the following commands postscript() [...] barplot(pr, xlab="L?nge") In the output file (Rplots.ps) the german umlaut is printed as "L..nge". How could I set the encoding correctly? Thanks for any help or tip. I am using R version 2.8.0 (2008-10-20) on openSuSE. Alexandros
On Tue, Aug 11, 2009 at 08:46 +0200, Alexandros Droseltis wrote:> I wrote a script file with the following commands > > postscript() > [...] > barplot(pr, xlab="L?nge") > > In the output file (Rplots.ps) the german umlaut is printed as "L..nge". > How could I set the encoding correctly?I found the solution myself: the argument encoding in the postscript() command has to be specified. In this case encoding="ISOLatin1" could solve the problem. HAND Alexandros