はい。¶
- class astropy.table.Row(table, index)[ソース]¶
ベースクラス:
object
Tableオブジェクトの1行のクラスを示す.
整数を使用してTableオブジェクトのインデックスを作成する場合、またはテーブルで反復すると、Rowオブジェクトが返される:
>>> from astropy.table import Table >>> table = Table([(1, 2), (3, 4)], names=('a', 'b'), ... dtype=('int32', 'int32')) >>> row = table[1] >>> row <Row index=1> a b int32 int32 ----- ----- 2 4 >>> row['a'] 2 >>> row[1] 4
属性要約
colnames
\columns
\dtype
\index
\meta
\table
\方法要約
as_void
\()1つに戻る read-only NP.voidまたはnp.ma.mvoidオブジェクト形式の行値コピー。
keys
\()values
\()属性文書
- colnames¶
- columns¶
- dtype¶
- index¶
- meta¶
- table¶
方法文書