Skip to content
Snippets Groups Projects
Commit 037473a4 authored by Uwe Jandt (DESY, HIFIS)'s avatar Uwe Jandt (DESY, HIFIS)
Browse files

Updated MV plot

parent 84440b99
No related branches found
No related tags found
1 merge request!34Updated MV plot
Pipeline #145532 canceled
......@@ -8,7 +8,7 @@ set yrange [0:*]
set xdata time
set timefmt "%Y-%m-%d %H:%M"
set format x "%Y-%m-%d"
set xrange ["2019-07-01":"2022-04-01"]
set xrange ["2019-12-01":"2022-04-01"]
set xtics rotate by 45 offset -4,-3
set ytics nomirror
set key top left
......@@ -16,8 +16,8 @@ set border 3
set terminal pdf color enhanced size 4,6 font "Helvetica, 16"
if (!exists("MP_LEFT")) MP_LEFT = 0.16
if (!exists("MP_RIGHT")) MP_RIGHT = .82
if (!exists("MP_LEFT")) MP_LEFT = 0.18
if (!exists("MP_RIGHT")) MP_RIGHT = 0.8
if (!exists("MP_BOTTOM")) MP_BOTTOM = .15
if (!exists("MP_TOP")) MP_TOP = .98
if (!exists("MP_xGAP")) MP_xGAP = 0.07
......@@ -40,7 +40,7 @@ set y2tics
set xtics textcolor rgbcolor "black" offset -4,-4 nomirror
set timefmt "%Y-%m"
set style fill pattern 6
plot '../stats/workshops/data.csv' u 1:2 w boxes axis x1y2 lc rgb "#8CB423" lw 0.8 title 'per month' ,\
plot '../stats/workshops/data.csv' u 1:2 w boxes axis x1y2 lc rgb "#005aa0" lw 0.8 title 'per month' ,\
'' u 1:3 w l lc black lw 2 title 'cumulative'
unset multiplot
File moved
......@@ -7,8 +7,8 @@ The plots have been used in previous reports and are updated with most recent da
##### Overall Report KPI plot 2021
* ![overall_plot_1](https://gitlab.hzdr.de/hifis/overall/kpi/kpi-plots-ci/-/jobs/artifacts/master/raw/plots/202103_Report_Overall/Report2020_plot1.png?job=plot_general)
##### MV 2021-04 and 2021-09
* ![mv_plot_1](https://gitlab.hzdr.de/hifis/overall/kpi/kpi-plots-ci/-/jobs/artifacts/master/raw/plots/202104_MV/plot.png?job=plot_general)
##### MV 2021-04, 2021-09, and 2022-04
* ![mv_plot_1](https://gitlab.hzdr.de/hifis/overall/kpi/kpi-plots-ci/-/jobs/artifacts/master/raw/plots/202204_MV/plot.png?job=plot_general)
##### Overall Report KPI plot 2022
* ![overall_plot_1](https://gitlab.hzdr.de/hifis/overall/kpi/kpi-plots-ci/-/jobs/artifacts/master/raw/plots/202203_Report_Overall/Report2021_plot1.png?job=plot_general)
......@@ -24,7 +24,7 @@ for datafile in ../data/*/data.csv; do
# If there is a filter.sh, use it.
# Otherwise, link the standard filter.sh and use this.
if [ ! -e "$folder/"filter.sh ]; then
if [ ! -e "$folder/"filter.sh ] || [ -h "$folder/"filter.sh ]; then
# remove the non-existing file, just to eliminate broken symlinks
rm -f "$folder/"filter.sh
echo ln -sv "$(pwd)"/filter.sh "$folder"/;
......@@ -40,7 +40,7 @@ for datafile in ../data/*/data.csv; do
# - we can use the standard plot.plt and link it there, or
# - there is a specific plot.plt already deposited for the specific folder.
if [ ! -e "$folder"/plot.plt ]; then
if [ ! -e "$folder"/plot.plt ] || [ -h "$folder"/plot.plt ]; then
# remove the non-existing file, just to eliminate broken symlinks
rm -f "$folder"/plot.plt
echo ln -sv "$(pwd)"/plot.plt "$folder"/;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment