euro                package:datasets                R Documentation

_C_o_n_v_e_r_s_i_o_n _R_a_t_e_s _o_f _E_u_r_o _C_u_r_r_e_n_c_i_e_s

_D_e_s_c_r_i_p_t_i_o_n:

     Conversion rates between the various Euro currencies.

_U_s_a_g_e:

     euro
     euro.cross

_F_o_r_m_a_t:

     'euro' is a named vector of length 11, 'euro.cross' a  matrix of
     size 11 by 11, with dimnames.

_D_e_t_a_i_l_s:

     The data set 'euro' contains the value of 1 Euro in all currencies
     participating in the European monetary union (Austrian Schilling
     ATS, Belgian Franc BEF, German Mark DEM, Spanish Peseta ESP,
     Finnish Markka FIM, French Franc FRF, Irish Punt IEP, Italian Lira
     ITL, Luxembourg Franc LUF, Dutch Guilder NLG and Portugese Escudo
     PTE).  These conversion rates were fixed by the European Union on
     December 31, 1998.  To convert old prices to Euro prices, divide
     by the respective rate and round to 2 digits.

     The data set 'euro.cross' contains conversion rates between the
     various Euro currencies, i.e., the result of 'outer(1 / euro,
     euro)'.

_E_x_a_m_p_l_e_s:

     cbind(euro)

     ## These relations hold:
     euro == signif(euro,6) # [6 digit precision in Euro's definition]
     all(euro.cross == outer(1/euro, euro))

     ## Convert 20 Euro to Belgian Franc
     20 * euro["BEF"]
     ## Convert 20 Austrian Schilling to Euro
     20 / euro["ATS"]
     ## Convert 20 Spanish Pesetas to Italian Lira
     20 * euro.cross["ESP", "ITL"]

     require(graphics)
     dotchart(euro,
              main = "euro data: 1 Euro in currency unit")
     dotchart(1/euro,
              main = "euro data: 1 currency unit in Euros")
     dotchart(log(euro, 10),
              main = "euro data: log10(1 Euro in currency unit)")

