1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
.\" SPDX-License-Identifier: MIT
.TH JITTERPLOT 1
.SH NAME
jitterplot \- plot collected samples by jitterdebugger
.SH SYNOPSIS
.B jitterplot [OPTIONS] {hist,samples}
.SH DESCRIPTION
.B jittersamples
procudes plots from the collected samples by jitterdebugger.
hist produces a histogram plot using the default output (JSON encoded)
from jitterdebugger.
samples procudes a plot using the all the collected samples by
jitterdebugger in CSV format.
.SH OPTIONS
.TP
.BI "-h, --help"
Show help text and exit.
.TP
.BI "--version"
Show jitterplot version.
.SH EXAMPLES
.EX
# jitterdebugger -f results.json
^C
# jitterplot hist results.json
# jitterdebugger -o samples.raw
^C
# jittersamples samples.raw > samples.txt
# jitterplot samples samples.txt
.EE
.SH SEE ALSO
.ad l
.nh
.BR jitterdebugger (1)
.BR jittersamples (1)
|