Metadata-Version: 1.0
Name: hist
Version: 1.0.0
Summary: hist generates histograms from a list of numbers
Home-page: http://github.com/crosswise/hist
Author: Ron Reiter
Author-email: ron@crosswise.com
License: MIT
Description: hist - A quick histogram utility
        ================================
        
        hist lets you create quick histograms using a series of numbers from the command line.
        
        Installing:
        -----------
        
            sudo pip install hist
        
        
        Usage:
        ------
        
        Running the following command:
         
            echo '1\n2\n2\n3\n3\n3\n4\n4\n5\n6\n7\n7\n8\n8\n8\n9\n9\n10' | hist
            
        Will create a histogram:
        
        ![Histogram](https://raw.githubusercontent.com/crosswise/hist/master/histogram.png)
        
        It will also output a textual representation:
        
            [         1 -          1]:          1 ##########
            [         2 -          2]:          2 #####################
            [         3 -          3]:          3 ################################
            [         4 -          4]:          2 #####################
            [         5 -          5]:          1 ##########
            [         6 -          6]:          1 ##########
            [         7 -          7]:          2 #####################
            [         8 -          8]:          3 ################################
            [         9 -          9]:          2 #####################
            [        10 -         10]:          1 ##########
            
            
        Usage:
        
            usage: hist [-h] [-i INPUT] [-b BUCKETS] [-s SCREEN_WIDTH] [-t TITLE]
            
            optional arguments:
              -h, --help            show this help message and exit
              -i INPUT, --input INPUT
                                    input file to read from
              -b BUCKETS, --buckets BUCKETS
                                    number of buckets
              -s SCREEN_WIDTH, --screen-width SCREEN_WIDTH
                                    maximum screen width
              -t TITLE, --title TITLE
                                    title for plot
        
        
        Author:
        -------
        
            Ron Reiter <ron@crosswise.com>
        
        
Platform: UNKNOWN
