Description
Tiny library to pretty print sparklines onto the CLI.
Description
Print sparklines into the CLI. Example usage: > import System.Console.Sparkline > main = putStrLn . series2spark $ [0, 1, 2, 3, 2, 1] output is: > _▂▅█▅▂
README.md
clisparkline
Sparklines are tiny charts to visually present data, like so: _▁▂▃▄▅▆▇█
clisparklines
is a tiny haskell library to print sparklines on the CLI.
Example program
import System.Console.Sparkline
main = putStrLn . series2spark $ [0, 1, 2, 3, 2, 1]
Output
_▂▅█▅▂