File:USD rate to INR.svg

Summary

Description
English: Exchange rate US Dollar - INR
Deutsch: Wechselkurs US Dollar - INR
Date
Source created with gnuplot, data from http://www.federalreserve.gov/
Author Gorgo
SVG development
InfoField
 
The SVG code is valid.
 
This plot was created with Gnuplot.
Category:Valid SVG created with Gnuplot#USD%20rate%20to%20INR.svg
 
Category:Translation possible - SVGThis plot uses embedded text that can be easily translated using a text editor.

gnuplot script to generate this plot

#!/usr/bin/gnuplot
# gnuplot 4.2
# gnuplot script for plotting eurofxref-hist.csv as obtained from
# http://www.federalreserve.gov/datadownload/Choose.aspx?rel=H10

# download and unzip data if not available
! [ -f FRB_H10.csv ] || wget -O FRB_H10.csv "http://www.federalreserve.gov/datadownload/Output.aspx?rel=H10&series=c5d6e0edf324b2fb28d73bcacafaaa02&lastObs=&from=01/01/1971&to=02/28/2015&filetype=csv&label=include&layout=seriescolumn"


#input
set timefmt "%Y-%m"
set datafile missing 'ND'
set datafile separator ','

#output
set key top left
set style data lines
set grid

set xdata time
set format x '%Y'
set xtics 157680000
set xrange ['1973-01':'2015-12']
#set mxtics 4

set ylabel 'INR'
set format y '%.2f'

set term svg size 800,400 font "Arial,10"

set outp 'USD rate to INR.svg'
set style line 1 lt rgb 'blue' lw 1.5

#available currencies:
#first one is $2, second $3 and so on
#Currency:USD,USD,USD,USD,BRL,CAD,CNY,DKK,HKD,INR,JPY,MYR,MXN,NOK,ZAR,SGD,KRW,LKR,SEK,CHF,TWD,THB,VEB


plot 'FRB_H10.csv' every ::6 usi 1:($11) title '1 USD in INR' ls 1

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.
Category:CC-BY-SA-3.0-migrated#USD%20rate%20to%20INR.svgCategory:License migration completed#USD%20rate%20to%20INR.svgCategory:GFDL#USD%20rate%20to%20INR.svg
Category:Self-published work Category:Images with Gnuplot source code Category:United States dollar exchange rate charts
Category:CC-BY-SA-3.0-migrated Category:GFDL Category:Images with Gnuplot source code Category:License migration completed Category:Self-published work Category:Translation possible - SVG Category:United States dollar exchange rate charts Category:Valid SVG created with Gnuplot