From 2fdd3a451cc5d7bbe20bccb595a318ed84321db0 Mon Sep 17 00:00:00 2001 From: Ole Tange Date: Tue, 15 Oct 2013 14:24:02 +0200 Subject: [PATCH] README: Future ideas. --- histogram/README | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 histogram/README diff --git a/histogram/README b/histogram/README new file mode 100644 index 0000000..0ff132d --- /dev/null +++ b/histogram/README @@ -0,0 +1,44 @@ +--input h,v + + foo,2 + bar,4 + +--input hv + + foo 2 + bar 4 + +--input ihv + + ignore foo 2 + ignore bar 4 + +--format hbv + + foo ====== 2 + bar ============ 4 + +--format HbV + + =foo=2= + =bar=========4= + +--format hb + + foo ====== + bar ============ + +--format hb% + + foo ====== 50% + bar ============ 100% + +--format hbv% + + foo ====== 2 50% + bar ============ 4 100% + +--format hVb% + + foo =2===== 50% + bar =4=========== 100%