github.com/yandex-cloud/geesefs@v0.40.9/bench/bench3.gnuplot (about)

     1  #!/usr/bin/gnuplot
     2  
     3  reset
     4  #fontsize = 12
     5  set terminal pngcairo crop size 1000,640
     6  set output ARG2
     7  #set key at graph 0.24, 0.8 horizontal samplen 0.1
     8  
     9  set key at graph -0.1, 0.75 horizontal samplen 0.1
    10  
    11  set style data histogram
    12  set style histogram errorbars gap 2 lw 1
    13  set style fill solid 1.00 border 0
    14  set boxwidth 0.8
    15  set xtic rotate
    16  unset ytics
    17  set y2tics rotate by 90
    18  
    19  #set yrange [0:100];
    20  
    21  set y2label 'Time (seconds)' offset -2.5
    22  set xlabel ' '
    23  set size 1, 1
    24  
    25  #set label 1 ARG3 at graph -0.4, 0.8 left rotate by 90
    26  #set label 2 ARG4 at graph -0.2, 0.8 left rotate by 90
    27  #set label 3 ARG5 at graph 0, 0.8 left rotate by 90
    28  
    29  set lmargin at screen 0.1
    30  
    31  set datafile separator "\t"
    32  
    33  set multiplot #layout 1,3
    34  set bmargin at screen 0.4
    35  #set size 1, 1
    36  
    37  set origin 0.0,0.1
    38  set size 0.31,0.8
    39  set xrange [5.5:7.8]
    40  
    41  plot ARG1 using 2:3:4 title ARG3, \
    42       '' using 5:6:7 title ARG4, \
    43       '' using 8:9:10 title ARG5, \
    44       '' using 0:(0):xticlabel(1) w l title ''
    45  
    46  set key off
    47  unset label 1
    48  unset label 2
    49  unset label 3
    50  set lmargin
    51  
    52  set origin 0.255,0.1
    53  set size 0.5,0.8
    54  set xrange [-0.5:5.5]
    55  
    56  plot ARG1 using 2:3:4 title ARG3, \
    57       '' using 5:6:7 title ARG4, \
    58       '' using 8:9:10 title ARG5, \
    59       '' using 0:(0):xticlabel(1) w l title ''
    60  
    61  set origin 0.7,0.1
    62  set size 0.175,0.8
    63  set xrange [7.5:8.7]
    64  #set yrange [0:4.0]
    65  
    66  plot ARG1 using 2:3:4 title ARG3, \
    67       '' using 5:6:7 title ARG4, \
    68       '' using 8:9:10 title ARG5, \
    69       '' using 0:(0):xticlabel(1) w l title ''
    70  
    71  unset multiplot