Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
KPI Plots-Calculations-CI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
HIFIS
Overall
KPI
KPI Plots-Calculations-CI
Commits
e83cd8b2
Commit
e83cd8b2
authored
3 years ago
by
Uwe Jandt (DESY, HIFIS)
Browse files
Options
Downloads
Patches
Plain Diff
plot for MV202109
parent
dbf2c9bf
No related branches found
Branches containing commit
No related tags found
1 merge request
!7
plot for MV202109
Pipeline
#97962
passed
3 years ago
Stage: build
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
202109_MV/plot.plt
+46
-0
46 additions, 0 deletions
202109_MV/plot.plt
202109_MV/plot.sh
+9
-0
9 additions, 0 deletions
202109_MV/plot.sh
subprojects/AAI
+1
-1
1 addition, 1 deletion
subprojects/AAI
with
56 additions
and
1 deletion
202109_MV/plot.plt
0 → 100755
+
46
−
0
View file @
e83cd8b2
#!/bin/gnuplot
set datafile separator ","
set output './plot.pdf'
set yrange [0:*]
set xdata time
set timefmt "%Y-%m-%d %H:%M"
set format x "%Y-%m-%d"
set xrange ["2019-09-01":"2021-10-02"]
set xtics rotate by 45 offset -4,-3
set ytics nomirror
set key top left
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_BOTTOM")) MP_BOTTOM = .15
if (!exists("MP_TOP")) MP_TOP = .98
if (!exists("MP_xGAP")) MP_xGAP = 0.07
if (!exists("MP_yGAP")) MP_yGAP = 0.03
set multiplot layout 2,1 columnsfirst margins screen MP_LEFT, MP_RIGHT, MP_BOTTOM, MP_TOP spacing screen MP_xGAP, MP_yGAP
set timefmt "%d.%m.%Y"
set ylabel "Helmholtz AAI users" offset 1
set xtics textcolor rgbcolor "white" nomirror
plot '../stats/aai/aai_users.csv' u 1:2 w l lc black lw 2 notitle
set border 11
set datafile separator ","
set ylabel "Cumulative course participant-hours"
set y2label "Per-month participant-hours" offset -1
set y2tics
set xtics textcolor rgbcolor "black" offset -4,-4 nomirror
set timefmt "%Y-%m"
set style fill pattern 6
plot '../stats/workshops/hifis_all_workshop_statistics.csv' u 1:2 w boxes axis x1y2 lc rgb "#8CB423" lw 0.8 title 'per month' ,\
'' u 1:3 w l lc black lw 2 title 'cumulative'
unset multiplot
This diff is collapsed.
Click to expand it.
202109_MV/plot.sh
0 → 100755
+
9
−
0
View file @
e83cd8b2
#!/bin/bash
gnuplot plot.plt
for
fn
in
*
.pdf
;
do
pdftoppm
$fn
plot_temp
-singlefile
-aa
no
-aaVector
no
-r
300
-png
convert plot_temp.png
${
fn
%.pdf
}
.png
rm
plot_temp.png
done
This diff is collapsed.
Click to expand it.
AAI
@
333187f2
Compare
6cef15f2
...
333187f2
Subproject commit
6cef15f2c17bc799f02be12f09ab758d124db58e
Subproject commit
333187f20363f6e63de2fcc005016d08612d9acb
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment