在python 3中打印直方图

时间:2011-01-26 04:12:21

标签: python python-3.x histogram

我有一个单词length_of_word |重复词典,我想制作一个像下面链接中的那个直方图,只使用python内置函数numpy或类似的东西。

http://dev.collabshot.com/show/723400/

请至少通过一些指示来帮助我。

1 个答案:

答案 0 :(得分:3)

我猜你必须有dict看起来像这个,对吗?

>>> d = {1:1, 2:10, 3:10, 4:6, 5:5, 6:4, 7:2, 8:1}
>>> d
{1: 1, 2: 10, 3: 10, 4: 6, 5: 5, 6: 4, 7: 2, 8: 1}

如果是这样,我有一个功能可以解决这个问题:

>>> def histo(dict_words):
    # Get max values, plus delta to ease display
    x_max = max(dict_words.keys()) + 2
    y_max = max(dict_words.values()) + 2
    # print line per line
    print '^'
    for j in range(y_max, 0, -1):
        s = '|'
        for i in range(1, x_max):
            if i in dict_words.keys() and dict_words[i] >= j:
                s += '***'
            else:
                s += '   '
        print s
    # print x axis
    s = '+'
    for i in range(1, x_max):
        s += '---'
    s += '>'
    print s
    # print indexes
    s = ' '
    for i in range(1, x_max):
        s += ' %d ' % i
    print s


>>> histo(d)
^
|                           
|                           
|   ******                  
|   ******                  
|   ******                  
|   ******                  
|   *********               
|   ************            
|   ***************         
|   ***************         
|   ******************      
|************************   
+--------------------------->
  1  2  3  4  5  6  7  8  9 
>>> 

好的,还有一些工作要在左边显示值,并正确格式化大于10的数字,不要在索引中移位,但我认为这是一个好的开始: - )