0.01
No release in over 3 years
Low commit activity in last 3 years
Nice-looking lightweight console ASCII line charts ┈╯
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.16
~> 5.0
~> 10.0
 Project Readme

Ascii Chart

Gem Travis Coveralls license

Nice-looking lightweight console ASCII line charts ╭┈╯. Port of kroitor/asciichart.

Installation

Add this line to your application's Gemfile:

gem 'ascii_chart'

And then execute:

$ bundle

Or install it yourself as:

$ gem install ascii_chart

Usage

require 'ascii_chart'

AsciiChart.plot((0...90).map { |i|
 Math.cos(i * ((Math::PI * 8) / 90)).round(2) * 10
})

Some sample cases are provided, to see them, execute:

$ rake -T sample
rake sample:1       # Output the first case
rake sample:2       # Output the second case
rake sample:3       # Output the third case
rake sample:random  # Out put a random case

e.g. For an random case, execute:

$ rake sample:random
    5.00  ┼---╮                                     ╭------╮                                     ╭--
    4.00  ┤   ╰-╮                                 ╭-╯      ╰-╮                                 ╭-╯  
    3.00  ┤     ╰-╮                             ╭-╯          ╰-╮                             ╭-╯    
    2.00  ┤       ╰-╮                         ╭-╯              ╰-╮                         ╭-╯      
    1.00  ┤         ╰╮                       ╭╯                  ╰╮                       ╭╯        
    0.00  ┼          ╰╮                     ╭╯                    ╰╮                     ╭╯         
   -1.00  ┤           ╰-╮                 ╭-╯                      ╰-╮                 ╭-╯          
   -2.00  ┤             ╰╮               ╭╯                          ╰╮               ╭╯            
   -3.00  ┤              ╰-╮           ╭-╯                            ╰-╮           ╭-╯             
   -4.00  ┤                ╰--╮     ╭--╯                                ╰--╮     ╭--╯               
   -5.00  ┤                   ╰-----╯                                      ╰-----╯                  
    9.00  ┤        ╭╮                   ╭╮                   ╭╮          ╭╮   ╭╮
    8.00  ┤  ╭╮    ||                   ||       ╭-╮  ╭╮     || ╭╮       ||   ||                ╭╮
    7.00  ┤  ||    ||                   ||   ╭╮╭╮| |  ||╭╮  ╭╯| ||  ╭╮   ||   ||                ||
    6.00  ┤  ||    ||                   ||╭╮ ||||| |  ||||  | | ||  ||╭╮ |╰-╮ ||   ╭╮           ||
    5.00  ┤╭╮||    ||                   |||| ||||| | ╭╯|||  | | || ╭╯||| |  | |╰╮  ||         ╭╮||
    4.00  ┤||||    ||                   |||╰╮||||| | | |||  | | || | ||| |  | | |  ||         ||||
    3.00  ┤||||    ||                   ||| |||||| | | |||  | | || | ||╰╮|  | | |  || ╭╮      ||||
    2.00  ┤||||    ||                 ╭╮||| |||||| | | ||| ╭╯ | || | ╰╯ ||  | | ╰╮ || ||      ||||
    1.00  ┼╯||╰-╮  ||      ╭╮         ||||| |||||| |╭╯ ||╰╮|  |╭╯| |    ||  | |  | || ||      ||||
    0.00  ┼ ╰╯  |  ||╭╮    || ╭-╮     |||╰╯ ||╰╯|| ||  || ╰╯  ╰╯ | |    ||  | |  | || ||  ╭╮  |||| ╭
   -1.00  ┤     |  ||||    || | |     |||   ||  || ||  ||        ╰╮|    ||  | |  | || ||  |╰╮ |||| |
   -2.00  ┤     |  ||||    || | |     |||   ╰╯  || ||  ||         ||    ||  | |  | ||╭╯|  | | |╰╯| |
   -3.00  ┤     |╭╮||||    || | |     |||       || ||  ||         ╰╯    ||  | |  | |╰╯ ╰-╮| | |  | |
   -4.00  ┤     |||||||╭╮  || | |     |||       || ||  ||               ╰╯  | |  | |     || | |  | |
   -5.00  ┤     ╰╯|||||||╭-╯|╭╯ |    ╭╯||       || ||  ╰╯                   | |  | |     || ╰-╯  | |
   -6.00  ┤       ||||╰╯╰╯  ||  |    | ||       ╰╯ ||                       ╰-╯  | |     ||      | |
   -7.00  ┤       ||||      ||  |╭-╮ | ╰╯          ╰╯                            | |     ||      | |
   -8.00  ┤       ╰╯╰╯      ╰╯  ╰╯ | |                                           |╭╯     ||      | |
   -9.00  ┤                        ╰-╯                                           ╰╯      ╰╯      ╰-╯

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/zhustec/ascii_chart. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.