Spark
a sparkline clone in Go
Install / Use
/learn @joliv/SparkREADME
spark
Cloning holman/spark for Go
A quick example:
import (
"fmt"
"github.com/joliv/spark"
)
boring_data := []float64{1, 2, 3, 4, 5, 6, 7, 8}
sparkline := spark.Line(boring_data)
fmt.Println(sparkline)
> "▁▂▃▄▅▆▇█"
Grab it with go get github.com/joliv/spark.
Now some more interesting examples.
Nats season batting averages at a certain point in their 2014 season:
avgs := []float64{.270, .272, .293, .310, .274, .239, .237, .238, .111}
spark.Line(avgs)
> "▇▇██▇▆▆▆▁"
Not too cool, but it is easy to see where the problem is in this lineup. You'll have to blame the National League's rules though, not Treinen. Anyway, have a look at average monthly highs in Phoenix:
temps := []float64{67, 71, 77, 85, 95, 104, 106, 105, 100, 89, 76, 66}
spark.Line(temps)
> "▁▂▃▄▆███▇▅▃▁"
Doesn't say much without knowing the min and max there (about 65° and 105°—why do people live there, again?) but you can clearly see the seasonal trend.
- Zach Holman does a great sell too, and this is really just a port of his neat tool. There are some cool examples there.
- @tv added a
main()with arg parsing so you can use it in your terminal. You can find that here. - Oh, and if you really want, you can pore over the full docs at godoc.org.
Licensed under GPLv3.
Related Skills
node-connect
335.8kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
82.7kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
335.8kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
82.7kCommit, push, and open a PR
