-
Notifications
You must be signed in to change notification settings - Fork 104
/
bar.go
371 lines (327 loc) · 8.28 KB
/
bar.go
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
package chart
import (
"fmt"
"math"
// "os"
// "strings"
)
// BarChart draws simple bar charts.
// (Use CategoricalBarChart if your x axis is categorical, that is not numeric.)
//
// Stacking is on a "both bars have _identical_ x values" basis.
type BarChart struct {
XRange, YRange Range
Title string // Title of the chart
Key Key // Key/Legend
Horizontal bool // Display as horizontal bars (unimplemented)
Stacked bool // Display different data sets ontop of each other (default is side by side)
ShowVal int // Display values: 0: don't show; 1: above bar, 2: centerd in bar; 3: at top of bar
SameBarWidth bool // all data sets use the same (smalest of all data sets) bar width
BarWidthFac float64 // if nonzero: scale determined bar width with this factor
Options PlotOptions // visual apperance, nil to use DefaultOptions
Data []BarChartData
}
// BarChartData encapsulates data sets in a bar chart.
type BarChartData struct {
Name string
Style Style
Samples []Point
}
// AddData adds the data to the chart.
func (c *BarChart) AddData(name string, data []Point, style Style) {
if len(c.Data) == 0 {
c.XRange.init()
c.YRange.init()
}
c.Data = append(c.Data, BarChartData{name, style, data})
for _, d := range data {
c.XRange.autoscale(d.X)
c.YRange.autoscale(d.Y)
}
if name != "" {
c.Key.Entries = append(c.Key.Entries, KeyEntry{Style: style, Text: name, PlotStyle: PlotStyleBox})
}
}
// AddDataPair is a convenience method to add all the (x[i],y[i]) pairs to the chart.
func (c *BarChart) AddDataPair(name string, x, y []float64, style Style) {
n := imin(len(x), len(y))
data := make([]Point, n)
for i := 0; i < n; i++ {
data[i] = Point{X: x[i], Y: y[i]}
}
c.AddData(name, data, style)
}
func (c *BarChart) rescaleStackedY() {
if !c.Stacked {
return
}
// rescale y-axis
highSize := 0
if len(c.Data) > 0 {
highSize = len(c.Data[0].Samples)
}
lowSize := 0
if len(c.Data) > 0 {
lowSize = len(c.Data[0].Samples)
}
high := make(map[float64]float64, 2*highSize)
low := make(map[float64]float64, 2*lowSize)
min, max := c.YRange.DataMin, c.YRange.DataMax
for _, d := range c.Data {
for _, p := range d.Samples {
x, y := p.X, p.Y
if y == 0 {
continue
}
if y > 0 {
if cur, ok := high[x]; ok {
high[x] = cur + y
} else {
high[x] = y
}
if high[x] > max {
max = high[x]
}
} else {
if cur, ok := low[x]; ok {
low[x] = cur - y
} else {
low[x] = y
}
if low[x] < min {
min = low[x]
}
}
}
}
// stacked histograms and y-axis _not_ starting at 0 is
// utterly braindamaged and missleading: Fix to 0 if
// not spaning negativ to positive
if min >= 0 {
c.YRange.DataMin, c.YRange.Min = 0, 0
c.YRange.MinMode.Fixed, c.YRange.MinMode.Value = true, 0
} else {
c.YRange.DataMin, c.YRange.Min = min, min
}
if max <= 0 {
c.YRange.DataMax, c.YRange.Max = 0, 0
c.YRange.MaxMode.Fixed, c.YRange.MaxMode.Value = true, 0
} else {
c.YRange.DataMax, c.YRange.Max = max, max
}
}
// Reset chart to state before plotting.
func (c *BarChart) Reset() {
c.XRange.Reset()
c.YRange.Reset()
}
// Plot renders the chart to the graphics output g.
func (c *BarChart) Plot(g Graphics) {
// layout
layout := layout(g, c.Title, c.XRange.Label, c.YRange.Label,
c.XRange.TicSetting.Hide || c.XRange.TicSetting.HideLabels,
c.YRange.TicSetting.Hide || c.YRange.TicSetting.HideLabels,
&c.Key)
width, height := layout.Width, layout.Height
topm, leftm := layout.Top, layout.Left
numxtics, numytics := layout.NumXtics, layout.NumYtics
font := elementStyle(c.Options, MajorAxisElement).Font
fw, fh, _ := g.FontMetrics(font)
// Outside bound ranges for bar plots are nicer
leftm += int(2 * fw)
width -= int(2 * fw)
height -= fh
c.rescaleStackedY()
c.XRange.Setup(numxtics, numxtics+3, width, leftm, false)
c.YRange.Setup(numytics, numytics+2, height, topm, true)
// Start of drawing
g.Begin()
if c.Title != "" {
drawTitle(g, c.Title, elementStyle(c.Options, TitleElement))
}
g.XAxis(c.XRange, topm+height+fh, topm, c.Options)
g.YAxis(c.YRange, leftm-int(2*fw), leftm+width, c.Options)
xf := c.XRange.Data2Screen
yf := c.YRange.Data2Screen
var sy0 int
switch {
case c.YRange.Min >= 0:
sy0 = yf(c.YRange.Min)
case c.YRange.Min < 0 && c.YRange.Max > 0:
sy0 = yf(0)
case c.YRange.Max <= 0:
sy0 = yf(c.YRange.Max)
default:
fmt.Printf("No f.... idea how this can happen. You've been fiddeling?")
}
// TODO: gap between bars.
var sbw, fbw int // ScreenBarWidth
var low, high map[float64]float64
if c.Stacked {
high = make(map[float64]float64, 50)
low = make(map[float64]float64, 50)
}
for dn, data := range c.Data {
mindeltax := c.minimumSampleSep(dn)
// DebugLogger.Printf("Minimum x-distance for set %d: %.3f\n", dn, mindeltax)
if c.Stacked {
sbw = (xf(2*mindeltax) - xf(0)) / 4
fbw = sbw
} else {
// V
// xxx === 000 ... xxx sbw = 3
// xx == 00 ## .. xx == fbw = 11
sbw = (xf(mindeltax)-xf(0))/(len(c.Data)+1) - 1
fbw = len(c.Data)*sbw + len(c.Data) - 1
}
// DebugLogger.Printf("sbw = %d , fbw = %d\n", sbw, fbw)
bars := make([]Barinfo, 0, len(data.Samples))
if c.Stacked {
for _, p := range data.Samples {
if _, ok := high[p.X]; !ok {
high[p.X], low[p.X] = 0, 0
}
}
}
for _, p := range data.Samples {
x, y := p.X, p.Y
if y == 0 {
continue
}
sx := xf(x) - fbw/2
if !c.Stacked {
sx += dn * (sbw + 1)
}
var sy, sh int
if c.Stacked {
if y > 0 {
top := y + high[x]
sy = yf(top)
sh = yf(high[x]) - sy
high[x] = top
} else {
bot := low[x] + y
sy = yf(low[x])
sh = yf(bot) - sy
low[x] = bot
}
} else {
if y > 0 {
sy = yf(y)
sh = sy0 - sy
} else {
sy = sy0
sh = yf(y) - sy0
}
}
bar := Barinfo{x: sx, y: sy, w: sbw, h: sh}
c.addLabel(&bar, y)
bars = append(bars, bar)
}
g.Bars(bars, data.Style)
}
if !c.Key.Hide {
g.Key(layout.KeyX, layout.KeyY, c.Key, c.Options)
}
g.End()
/******** old code **************
// find bar width
lbw, ubw := c.extremBarWidth()
var barWidth float64
if c.SameBarWidth {
barWidth = lbw
} else {
barWidth = ubw
}
// set up range and extend if bar would not fit
c.XRange.Setup(numxtics, numxtics+4, width, leftm, false)
c.YRange.Setup(numytics, numytics+2, height, topm, true)
if c.XRange.DataMin-barWidth/2 < c.XRange.Min {
c.XRange.DataMin -= barWidth / 2
}
if c.XRange.DataMax+barWidth > c.XRange.Max {
c.XRange.DataMax += barWidth / 2
}
c.XRange.Setup(numxtics, numxtics+4, width, leftm, false)
// Start of drawing
g.Begin()
if c.Title != "" {
g.Title(c.Title)
}
g.XAxis(c.XRange, topm+height, topm)
g.YAxis(c.YRange, leftm, leftm+width)
xf := c.XRange.Data2Screen
yf := c.YRange.Data2Screen
sy0 := yf(c.YRange.Min)
barWidth = lbw
for i, data := range c.Data {
if !c.SameBarWidth {
barWidth = c.barWidth(i)
}
sbw := imax(1, xf(2*barWidth)-xf(barWidth)-1) // screen bar width TODO
bars := make([]Barinfo, len(data.Samples))
for i, point := range data.Samples {
x, y := point.X, point.Y
sx := xf(x-barWidth/2) + 1
// sw := xf(x+barWidth/2) - sx
sy := yf(y)
sh := sy0 - sy
bars[i].x, bars[i].y = sx, sy
bars[i].w, bars[i].h = sbw, sh
}
g.Bars(bars, data.Style)
}
if !c.Key.Hide {
g.Key(layout.KeyX, layout.KeyY, c.Key)
}
g.End()
**********************************************************/
}
func (c *BarChart) minimumSampleSep(d int) (min float64) {
n := len(c.Data[d].Samples) - 1
if n == 0 {
return 1
}
min = math.MaxFloat64
for i := 0; i < n; i++ {
sep := math.Abs(c.Data[d].Samples[i].X - c.Data[d].Samples[i+1].X)
if sep < min {
min = sep
}
}
return
}
func (c *BarChart) addLabel(bar *Barinfo, y float64) {
if c.ShowVal == 0 {
return
}
var sval string
if math.Abs(y) >= 100 {
sval = fmt.Sprintf("%d", int(y+0.5))
} else if math.Abs(y) >= 10 {
sval = fmt.Sprintf("%.1f", y)
} else if math.Abs(y) >= 1 {
sval = fmt.Sprintf("%.2f", y)
} else {
sval = fmt.Sprintf("%.3f", y)
}
var tp string
switch c.ShowVal {
case 1:
if y >= 0 {
tp = "ot"
} else {
tp = "ob"
}
case 2:
if y >= 0 {
tp = "it"
} else {
tp = "ib"
}
case 3:
tp = "c"
}
bar.t = sval
bar.tp = tp
}