Hello everyone!

If you are like me and work a lot from the command line, but you would 
still like to visualise your data somehow, then maybe UnicodePlots.jl 
<https://github.com/Evizero/UnicodePlots.jl> could be of use to you.
It supports colors and also offers a low-level API to the canvas itself if 
you need to do some custom drawings.

it supports

   - Scatterplot
   - Lineplot
   - Staircase Plot
   - Barplot (horizontal)
   
Here is a hello world example:

myPlot = lineplot([1, 2, 3, 7], [1, 2, -1, 4], color=:red, title="My Plot")
drawLine!(myPlot, 1., -1., 7., 2., :blue)
annotate!(myPlot, :r, 2, "red  ... Curve 1")
annotate!(myPlot, :r, 4, "blue ... Curve 2")


<https://raw.githubusercontent.com/Evizero/UnicodePlots.jl/master/doc/img/hello_world.png>

Reply via email to