0

I'm working on a zoo object in R containing a financial time series and wanted to plot it.

By using the simple command

plot(zoo_obj)

a plot is automatically created as in the figure below. How to choose the language of the x-axis?

Here the x-axis is in Italian and I wanted to have that in English.

enter image description here

Lorenzo Rigamonti
  • 1,705
  • 8
  • 25
  • 36

1 Answers1

1

These work for me:

Sys.setlocale("LC_ALL", "English")

Sys.setlocale("LC_ALL", "French")

etc. on a Windows 8.1 "R version 3.0.2 Patched (2013-11-25 r64299)" system.

G. Grothendieck
  • 254,981
  • 17
  • 203
  • 341