File:Greece-deposits-from-2001.svg
Summary
| Description |
English: Deposits in Greece from 2001 onwards. Includes corporations and households and general government deposits. Data form Bank of Greece (http://www.bankofgreece.gr/Pages/en/Statistics/monetary/deposits.aspx deposits breakdown by sector file) Ελληνικά: Καταθέσεις στην Ελλάδα από το 2001 και έπειτα. Περιλαμβάνονται οι επιχειρήσεις και τα νοικοκυριά και οι καταθέσεις της γενικής κυβέρνησης. Δεδομένα από την Τράπεζα της Ελλάδος (http://www.bankofgreece.gr/Pages/el/Statistics/monetary/deposits.aspx αρχείο με την ανάλυση καταθέσεων ανά τομέα) |
| Date | |
| Source | Own work |
| Author | CubicStar |
Licensing
I, the copyright holder of this work, hereby publish it under the following license:
| This file is made available under the Creative Commons CC0 1.0 Universal Public Domain Dedication. | |
| The person who associated a work with this deed has dedicated the work to the public domain by waiving all of their rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission.
|
Gnuplot script to generate this plot
Data for the script are obtained from URLs above. Reproducing the script requires some massaging of the file. Specifically "deposits.dat" is a space-delimited file with three columns: End-of-period, Corporations and households (row 1.2) and General government (row 1.1).
# Terminal
set terminal svg enhanced size 1000 600 fname "Arial,sans" fsize 12
set output "Greece-deposits-from-2001.svg"
# Data and formats
set datafile missing "-"
set datafile separator " "
set xdata time
set timefmt "%b-%y"
set format x "%Y"
# Scale and ranges
set autoscale
set xrange ["Nov-00":"Jul-16"]
set yrange [0 : 300.000]
# Ticks, borders and title
set border 0
set ytics autofreq nomirror
set grid xtics linetype 1 linewidth 1 linecolor rgb "#efefef"
set grid ytics linetype 1 linewidth 1 linecolor rgb "#efefef"
set object 1 rectangle \
from graph 0, graph 0 to graph 1, graph 1 \
behind \
fillcolor rgb "#ffffff" \
fillstyle solid 1.0
set title "Καταθέσεις από επιχειρήσεις και νοικοκυριά (κόκκινο) και την κυβέρνηση (μπλε)\n στην Ελλάδα, 2001-2016 (σε δισ. ευρώ)"
# Plot
plot "deposits.dat" using 1:2 with lines lw 2.5 linecolor rgb "#e41a1c" title "", \
"deposits.dat" using 1:3 with lines lw 2.5 linecolor rgb "#377eb8" title ""
##