FixedWidthNoHeader

class astropy.io.ascii.FixedWidthNoHeader(col_starts=None, col_ends=None, delimiter_pad=' ', bookend=True)[ソース]

ベースクラス: astropy.io.ascii.fixedwidth.FixedWidth

見出し行の固定幅テーブルはない.

読み込む際には、列名を入力することができます (names キーワード)や自動生成.列位置は入力によって決定される (col_starts そして col_stops キーワード)または第1のデータ行を分割することにより。後者の場合は delimiter データ行を分割するために必要である.

例:

# Bar delimiter in header and data

|  1.2  | hello there |     3 |
|  2.4  | many words  |     7 |

# Compact table having no delimiter and column positions specified as input

1.2hello there3
2.4many words 7

この種類はただ便利な包装器で、包装するためのものです。 FixedWidth リーダーですが持っています header_start=None そして data_start=0 それがそうです。

ご参照ください 固定幅画廊 具体的な用法例については、参照されたい。