Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Oppodelldog committed Sep 22, 2019
1 parent 9401c2c commit 569c811
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,6 @@ func main() {
}
```
Combinaed Plot |
Combined Plot |
:-------------------------:|
![](examples/ex3/AB.png)|
Binary file modified examples/ex3/AB.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 5 additions & 1 deletion examples/ex3/main.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package main

import (
"gonum.org/v1/plot/vg"
"time"

"github.com/Oppodelldog/bigo"
Expand All @@ -22,8 +23,11 @@ func main() {
})
}

plotConfig := bigo.DefaultPlotConfig
plotConfig.PlotHeight = 8 * vg.Inch
plotConfig.PlotWidth = 8 * vg.Inch
// plot the collected result data and create one plot out of the data
bigo.PlotTestResults("A/B", seriesList)
bigo.PlotTestResultsWithConfig("A/B", seriesList, plotConfig)
}

// Runner implements TestRunner
Expand Down

0 comments on commit 569c811

Please sign in to comment.