Compare commits
4 Commits
2018-10-16
...
2018-10-21
| Author | SHA1 | Date | |
|---|---|---|---|
| 56ec2b523e | |||
| 28e492d10a | |||
| 30738bddc0 | |||
| 59a43e8806 |
@@ -1,8 +1,6 @@
|
|||||||
|
#!/usr/bin/env gnuplot
|
||||||
# based on code of [[User:Gorgo]]/[[:c:File:Euro exchange rate to TRY.svg]]
|
# based on code of [[User:Gorgo]]/[[:c:File:Euro exchange rate to TRY.svg]]
|
||||||
|
|
||||||
# gnuplot script for plotting eurofxref-hist.csv as obtained from
|
|
||||||
# http://www.ecb.int/stats/exchange/eurofxref/html/index.en.html
|
|
||||||
|
|
||||||
infile=system("echo $INFILE")
|
infile=system("echo $INFILE")
|
||||||
outfile=system("echo $OUTFILE")
|
outfile=system("echo $OUTFILE")
|
||||||
|
|
||||||
@@ -38,6 +36,13 @@ set grid linestyle 1, linestyle 2 # Setzen des linestyle für Major u. Minor
|
|||||||
set xdata time
|
set xdata time
|
||||||
set x2data time
|
set x2data time
|
||||||
set format x '1. %b'
|
set format x '1. %b'
|
||||||
|
set xtics ('') # leeren Str setzen damit per for-Schleife
|
||||||
|
# addiert werden kann
|
||||||
|
do for [month_tic=1:12] {
|
||||||
|
new_xtic = gprintf("2018-%02.0f-01", month_tic)
|
||||||
|
# print 'Setze xtic bei: ' . new_xtic # Ausgabe für Tests
|
||||||
|
set xtics add ( new_xtic )
|
||||||
|
}
|
||||||
if (GPVAL_VERSION >= 5.0) {
|
if (GPVAL_VERSION >= 5.0) {
|
||||||
set xtics rotate by +15 center offset 0,-0.5
|
set xtics rotate by +15 center offset 0,-0.5
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
|
#!/usr/bin/env gnuplot
|
||||||
# based on code of [[User:Gorgo]]/[[:c:File:Euro exchange rate to TRY.svg]]
|
# based on code of [[User:Gorgo]]/[[:c:File:Euro exchange rate to TRY.svg]]
|
||||||
|
|
||||||
# gnuplot script for plotting eurofxref-hist.csv as obtained from
|
|
||||||
# http://www.ecb.int/stats/exchange/eurofxref/html/index.en.html
|
|
||||||
|
|
||||||
infile=system("echo $INFILE")
|
infile=system("echo $INFILE")
|
||||||
outfile=system("echo $OUTFILE")
|
outfile=system("echo $OUTFILE")
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
|
#!/usr/bin/env gnuplot
|
||||||
# based on code of [[User:Gorgo]]/[[:c:File:Euro exchange rate to TRY.svg]]
|
# based on code of [[User:Gorgo]]/[[:c:File:Euro exchange rate to TRY.svg]]
|
||||||
|
|
||||||
# gnuplot script for plotting eurofxref-hist.csv as obtained from
|
|
||||||
# http://www.ecb.int/stats/exchange/eurofxref/html/index.en.html
|
|
||||||
|
|
||||||
infile=system("echo $INFILE")
|
infile=system("echo $INFILE")
|
||||||
outfile=system("echo $OUTFILE")
|
outfile=system("echo $OUTFILE")
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
|
#!/usr/bin/env gnuplot
|
||||||
# based on code of [[User:Gorgo]]/[[:c:File:Euro exchange rate to TRY.svg]]
|
# based on code of [[User:Gorgo]]/[[:c:File:Euro exchange rate to TRY.svg]]
|
||||||
|
|
||||||
# gnuplot script for plotting eurofxref-hist.csv as obtained from
|
|
||||||
# http://www.ecb.int/stats/exchange/eurofxref/html/index.en.html
|
|
||||||
|
|
||||||
infile=system("echo $INFILE")
|
infile=system("echo $INFILE")
|
||||||
outfile=system("echo $OUTFILE")
|
outfile=system("echo $OUTFILE")
|
||||||
|
|
||||||
@@ -38,6 +36,13 @@ set grid linestyle 1, linestyle 2 # Setzen des linestyle für Major u. Minor
|
|||||||
set xdata time
|
set xdata time
|
||||||
set x2data time
|
set x2data time
|
||||||
set format x '1. %b'
|
set format x '1. %b'
|
||||||
|
set xtics ('') # leeren Str setzen damit per for-Schleife
|
||||||
|
# addiert werden kann
|
||||||
|
do for [month_tic=1:12] {
|
||||||
|
new_xtic = gprintf("2018-%02.0f-01", month_tic)
|
||||||
|
# print 'Setze xtic bei: ' . new_xtic # Ausgabe für Tests
|
||||||
|
set xtics add ( new_xtic )
|
||||||
|
}
|
||||||
if (GPVAL_VERSION >= 5.0) {
|
if (GPVAL_VERSION >= 5.0) {
|
||||||
set xtics rotate by +15 center offset 0,-0.5
|
set xtics rotate by +15 center offset 0,-0.5
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Reference in New Issue
Block a user