web-dev-qa-db-ja.com

NumPy:きれいに印刷された表形式データ

NumPy表形式配列データを印刷して、見栄えを良くしたいと思います。 Rおよびデータベースコンソールは、これを行うための優れた能力を実証しているようです。ただし、NumPyの組み込みの表配列の印刷は、ガベージのように見えます。

import numpy as np
dat_dtype = {
    'names' : ('column_one', 'col_two', 'column_3'),
    'formats' : ('i', 'd', '|S12')}
dat = np.zeros(4, dat_dtype)
dat['column_one'] = range(4)
dat['col_two'] = 10**(-np.arange(4, dtype='d') - 4)
dat['column_3'] = 'ABCD'
dat['column_3'][2] = 'long string'

print(dat)
# [(0, 0.0001, 'ABCD') (1, 1.0000000000000001e-005, 'ABCD')
#  (2, 9.9999999999999995e-007, 'long string')
#  (3, 9.9999999999999995e-008, 'ABCD')]

print(repr(dat))
# array([(0, 0.0001, 'ABCD'), (1, 1.0000000000000001e-005, 'ABCD'),
#        (2, 9.9999999999999995e-007, 'long string'),
#        (3, 9.9999999999999995e-008, 'ABCD')], 
#       dtype=[('column_one', '<i4'), ('col_two', '<f8'), ('column_3', '|S12')])

データベースが出力するものに似たもの、たとえばpostgresスタイルを希望します。

 column_one | col_two |  column_3
------------+---------+-------------
          0 |  0.0001 | ABCD
          1 |  1e-005 | long string
          2 |  1e-008 | ABCD
          3 |  1e-007 | ABCD

優れたサードパーティのPythonライブラリをフォーマットして、見栄えのよいASCIIテーブルをフォーマットするためのライブラリはありますか?

Python 2.5、NumPy 1.3.0を使用しています。

15
Mike T

私は prettytable で良い出力をしているようです:

from prettytable import PrettyTable
x = PrettyTable(dat.dtype.names)
for row in dat:
    x.add_row(row)
# Change some column alignments; default was 'c'
x.align['column_one'] = 'r'
x.align['col_two'] = 'r'
x.align['column_3'] = 'l'

そして、出力は悪くありません。他のいくつかのオプションの中で、borderスイッチさえあります:

>>> print(x)
+------------+---------+-------------+
| column_one | col_two |   column_3  |
+------------+---------+-------------+
|          0 |  0.0001 | ABCD        |
|          1 |  1e-005 | ABCD        |
|          2 |  1e-006 | long string |
|          3 |  1e-007 | ABCD        |
+------------+---------+-------------+
>>> print(x.get_string(border=False))
 column_one  col_two    column_3  
          0   0.0001  ABCD        
          1   1e-005  ABCD        
          2   1e-006  long string 
          3   1e-007  ABCD        
21
Mike T

配列内包を利用して、printf形式の文字列を使用できます。

for c1, c2, c3 in dat:  
    print "%2f | %8e | %s" % (c1, c2, c3)

https://en.wikipedia.org/wiki/Printf_format_string
バージョン2.7にアップグレードすると、さらにカスタマイズできます

6
story645

tabulate パッケージはNumpy配列でうまく機能します:

import numpy as np
from tabulate import tabulate

m = np.array([[1, 2, 3], [4, 5, 6]])
headers = ["col 1", "col 2", "col 3"]

# tabulate data
table = tabulate(m, headers, tablefmt="fancy_grid")

# output
print(table)

(上記のコードはPython 3; for Python 2 add from __future__ import print_functionスクリプトの上部)

出力:

╒═════════╤═════════╤═════════╕
│   col 1 │   col 2 │   col 3 │
╞═════════╪═════════╪═════════╡
│       1 │       2 │       3 │
├─────────┼─────────┼─────────┤
│       4 │       5 │       6 │
╘═════════╧═════════╧═════════╛

パッケージはpip経由でインストールされます:

$ pip install tabulate     # (use pip3 for Python 3 on some systems)
6
Sean

Pandasをチェックすることをお勧めします。これは、表形式のデータを処理するための多くの素晴らしい機能を備えており、印刷時に物事をうまくレイアウトするようです(python Rの置き換え):

http://pandas.pydata.org/

5
JoshAdel