File: pcm.plot

package info (click to toggle)
pcm 202502-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,164 kB
  • sloc: cpp: 44,347; ansic: 1,161; sh: 778; python: 388; awk: 28; makefile: 13
file content (24 lines) | stat: -rw-r--r-- 405 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

set key autotitle columnhead
set datafile separator ","

# change as needed
# set xlabel 'sample # (each is 1000ms)'

set ylabel 'metric value'

set terminal pdf
set output "pcm.pdf"

# change below as needed
# plot metrics 3 .. 37
do for [m=3:37] {
    plot "single_header.pcm.csv" using m with dots
}

# plot metrics 84 .. 107
do for [m=84:107] {
    plot "single_header.pcm.csv" using m with dots
}