Documentation ¶
Overview ¶
Package histogram is a helper to quickly create histograms from slices of float64.
You can use it with any numeric value, given that you convert it back and forth to []float64.
Index ¶
Examples ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Fprint ¶
Fprint prints a unicode histogram on the io.Writer, using scale s. This code:
hist := Hist(9, data) err := Fprint(os.Stdout, hist, Linear(5))
... yields the graph:
0.1-0.2 5% ▋1 0.2-0.3 25% ██▋5 0.3-0.4 0% ▏ 0.4-0.5 5% ▋1 0.5-0.6 50% █████▏10 0.6-0.7 0% ▏ 0.7-0.8 0% ▏ 0.8-0.9 5% ▋1 0.9-1 10% █▏2
Types ¶
type Bucket ¶
type Bucket struct { // Count is the number of values represented in the bucket. Count int // Min is the low, inclusive bound of the bucket. Min float64 // Max is the high, exclusive bound of the bucket. If // this bucket is the last bucket, the bound is inclusive // and contains the max value of the histogram. Max float64 }
Bucket counts a partion of values.
type FormatFunc ¶
FormatFunc formats a float into the proper string form. Used to print meaningful axe labels.
type Histogram ¶
type Histogram struct { // Min is the size of the smallest bucket. Min int // Max is the size of the biggest bucket. Max int // Count is the total size of all buckets. Count int // Buckets over which values are partionned. Buckets []Bucket }
Histogram holds a count of values partionned over buckets.
func EqualBucketHist ¶
EqualBucketHist creates an histogram partionning input over `bins` buckets with equal count per bucket.
func Hist ¶
Hist creates an histogram partionning input over `bins` buckets.
Example ¶
data := []float64{ 0.1, 0.2, 0.21, 0.22, 0.22, 0.3, 0.4, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.6, // 0.7 is empty 0.8, 0.9, 1.0, } hist := Hist(9, data) if err := Fprint(os.Stdout, hist, Linear(5)); err != nil { panic(err) } // 0.1-0.2 5% ▋ 1 // 0.2-0.3 25% ██▊ 5 // 0.3-0.4 0% ▏ // 0.4-0.5 5% ▋ 1 // 0.5-0.6 45% █████▏ 9 // 0.6-0.7 5% ▋ 1 // 0.7-0.8 0% ▏ // 0.8-0.9 5% ▋ 1 // 0.9-1 10% █▏ 2
Output:
Example (Duration) ¶
data := []float64{ float64(time.Millisecond * 100), float64(time.Millisecond * 200), float64(time.Millisecond * 210), float64(time.Millisecond * 220), float64(time.Millisecond * 221), float64(time.Millisecond * 222), float64(time.Millisecond * 223), float64(time.Millisecond * 300), float64(time.Millisecond * 400), float64(time.Millisecond * 500), float64(time.Millisecond * 510), float64(time.Millisecond * 520), float64(time.Millisecond * 530), float64(time.Millisecond * 540), float64(time.Millisecond * 550), float64(time.Millisecond * 560), float64(time.Millisecond * 570), float64(time.Millisecond * 580), float64(time.Millisecond * 600), // no 0.7s float64(time.Millisecond * 800), float64(time.Millisecond * 900), float64(time.Millisecond * 1000), } hist := Hist(9, data) err := Fprintf(os.Stdout, hist, Linear(5), func(v float64) string { return time.Duration(v).String() }) if err != nil { panic(err) } // 100ms-200ms 4.55% ▋ 1 // 200ms-300ms 27.3% ███▍ 6 // 300ms-400ms 4.55% ▋ 1 // 400ms-500ms 4.55% ▋ 1 // 500ms-600ms 40.9% █████▏ 9 // 600ms-700ms 4.55% ▋ 1 // 700ms-800ms 0% ▏ // 800ms-900ms 4.55% ▋ 1 // 900ms-1s 9.09% █▏ 2
Output:
Click to show internal directories.
Click to hide internal directories.