go: use AlgoMeanVals for comparison of means plots
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
surtur 2022-08-03 21:17:19 +02:00
parent f108202470
commit 1081260acf
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D
3 changed files with 134 additions and 0 deletions

View File

@ -14,8 +14,13 @@
// mu protects access to meanStats.
var mu sync.Mutex
// mCoMPL protexts access to comparisonOfMeansPicList.
var mCoMPL sync.Mutex
var meanStats = &stats.MeanStats{}
var comparisonOfMeansPicList = &report.PicList{Algo: "Comparison of Means"}
// DoRandomSearch executes a search using the 'Random search' method.
func DoRandomSearch(wg *sync.WaitGroup, m *sync.Mutex) {
defer wg.Done()

View File

@ -7,6 +7,7 @@
"fmt"
"log"
"strings"
"sync"
"time"
"git.dotya.ml/wanderer/math-optim/report"
@ -26,6 +27,127 @@
xAxisLabel = "Generations"
)
// PlotMeanValsMulti creates plots for every member of 'stats.AlgoMeanVals' it
// is handed and saves them as 'result.Pic's results into a package-global
// slice.
func PlotMeanValsMulti(
w *sync.WaitGroup,
dimens, iterations int,
bench, fPrefix, fExt string,
algoMeanVals ...stats.AlgoMeanVals,
) {
defer w.Done()
// track time.
start := time.Now()
pWidth := 13 * vg.Centimeter
pHeight := 13 * vg.Centimeter
plotter.DefaultFont.Typeface = preferredFont
plotter.DefaultLineStyle.Width = vg.Points(2.0)
p := plot.New()
pic := report.NewPic()
p.Title.Text = fmt.Sprintf(
"Comparison of Means (%dI) -\n%s (%dD)",
iterations, bench, dimens,
)
p.X.Label.Text = xAxisLabel
p.X.Label.TextStyle.Font.Variant = preferredFont
p.X.Label.TextStyle.Font.Weight = 1 // Medium
p.X.Tick.Label.Font.Variant = preferredFont
p.Y.Label.Text = yAxisLabel
p.Y.Label.TextStyle.Font.Variant = preferredFont
p.Y.Label.TextStyle.Font.Weight = 1 // Medium
p.Y.Tick.Label.Font.Variant = preferredFont
p.Title.TextStyle.Font.Size = 14.5
p.Title.TextStyle.Font.Variant = titlePreferredFont
p.Title.TextStyle.Font.Weight = 2 // SemiBold
p.Title.Padding = 3 * vg.Millimeter
p.Legend.TextStyle.Font.Variant = preferredFont
p.Legend.TextStyle.Font.Size = 10
p.Legend.Top = true
p.Legend.Padding = 2 * vg.Millimeter
lines := make([]interface{}, 0)
for _, v := range algoMeanVals {
// mark the end of the X axis with the greatest of len(v)
if greatest := float64(len(v.MeanVals)); greatest > p.X.Max {
p.X.Max = greatest
}
if min := floats.Min(v.MeanVals); min < p.Y.Min {
p.Y.Min = min
}
if max := floats.Max(v.MeanVals); max > p.Y.Max {
p.Y.Max = max
}
pts := make(plotter.XYs, len(v.MeanVals))
// fill the plotter with datapoints.
for k, res := range v.MeanVals {
pts[k].X = float64(k)
pts[k].Y = res
}
lines = append(lines, v.Title, pts)
}
err := plotutil.AddLines(
p,
lines...,
)
if err != nil {
log.Panic(err)
}
filename := util.SanitiseFName(
fmt.Sprintf("%s%scomparison-of-means-%dI-%s-%02dD",
report.GetPicsDir(),
fPrefix,
iterations,
bench,
dimens,
),
)
// set pic file path and caption.
pic.FilePath = filename
pic.Caption = strings.ReplaceAll(
fmt.Sprintf("Comparison of Means (%dI) - %s (%dD)",
iterations, bench, dimens,
),
" ", "~")
pic.Bench = bench
elapsed := time.Since(start)
info := fmt.Sprintf("saving img to file: %s%s [generated in %s]",
filename, fExt, elapsed,
)
log.Println(info)
// Save the plot to a file using the above-constructed 'filename'.
if err := p.Save(
pWidth,
pHeight,
filename+fExt,
); err != nil {
panic(err)
}
mCoMPL.Lock()
comparisonOfMeansPicList.Pics = append(comparisonOfMeansPicList.Pics, *pic)
mCoMPL.Unlock()
}
func plotMeanVals(meanVals []float64, title string, fes int) *plot.Plot {
plotter.DefaultFont.Typeface = preferredFont
plotter.DefaultLineStyle.Width = vg.Points(2.0)

View File

@ -51,6 +51,13 @@ type MeanStats struct {
AlgoMeans []AlgoBenchMean
}
// AlgoMeanVals holds computed mean values of an Algo.
type AlgoMeanVals struct {
Title string
// MeanVals of a particular bench func to compare.
MeanVals []float64
}
type Stats struct {
Algo string
Dimens int