File:Euro exchange rate to USD, JPY, and GBP.png

From Citizendium
Jump to navigation Jump to search

Original file(1,000 × 600 pixels, file size: 23 KB, MIME type: image/png)

This file is from a shared repository and may be used by other projects. The description on its file description page there is shown below.

Summary

Description
English: Exchange rate evolution of the euro compared to USD, JPY and GBP. Exchange rate on 1.January 1999 is put to 100%.

Green: in Jan-1999: €1 = $1.18
Red: in Jan-1999: €1 = ¥133

Blue: in Jan-1999: €1 = £0.71
Source
 
This plot was created with Gnuplot.
Own work
Data from http://www.ecb.int/stats/exchange/eurofxref/html/index.en.html
Author donarreiskoffer (talk · contribs),hankwang (talk · contribs), Gorgo (talk · contribs)
Other versions


Licensing

I, the copyright holder of this work, hereby publish it under the following license:
GNU head Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License.
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
This licensing tag was added to this file as part of the GFDL licensing update.


Gnuplot script to generate this plot

When run in Linux (and similar OS'es), this script will automatically download the data and generate an updated plot image. With some adaptations and a bit more manual work, it would work in the Windows version of Gnuplot.

#!/usr/bin/gnuplot
# gnuplot 4.6 
# gnuplot script for plotting eurofxref-hist.csv as obtained from
# http://www.ecb.int/stats/exchange/eurofxref/html/index.en.html
 
# download and unzip data if not available - delete eurofxref* to force new download.
# remove or comment out these lines in Windows/MacOS.
! [ -f eurofxref-hist.csv ] || wget http://www.ecb.int/stats/eurofxref/eurofxref-hist.zip
! [ -f eurofxref-hist.csv ] || unzip eurofxref-hist.zip
 
#input
set timefmt "%Y-%m-%d"
set datafile missing "N/A"
set datafile separator ','
 
#output
set key top left
set style data lines
set grid
 
set xdata time
set xlabel 'Date'
set xrange ['1999-01-04':*]
set mxtics 4
set format x '%Y'
 
set ylabel 'Indexed exchange rates'
set format y '%g%%'
 
set term png small size 1000,600 font "Arial,10"
 
set outp 'Euro exchange rate to USD, JPY, and GBP.png'
set style line 1 lt rgb 'green' lw 1
set style line 2 lt rgb 'red' lw 1
set style line 3 lt rgb 'blue' lw 1
 
plot \
    'eurofxref-hist.csv' \
    usi 1:($2/0.011789) title '100%=1.18 USD' ls 1, \
    '' usi 1:($3/1.3373) title '100%=134 JPY' ls 2, \
    '' usi 1:($9/0.00711) title '100%=0.71 GBP' ls 3

Captions

Add a one-line explanation of what this file represents

このファイルに描写されている項目

depicts

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current13:23, 23 December 2020Thumbnail for version as of 13:23, 23 December 20201,000 × 600 (23 KB)imagescommonswiki>Gorgoupdated

The following file is a duplicate of this file (more details):

There are no pages that use this file.

Metadata