QTable

class astropy.table.QTable(data=None, masked=False, names=None, dtype=None, meta=None, copy=True, rows=None, copy_indices=True, units=None, descriptions=None, **kwargs)[source]

Bases: Table

A class to represent tables of heterogeneous data.

QTable provides a class for heterogeneous tabular data which can be easily modified, for instance adding columns or new rows.

The QTable class is identical to Table except that columns with an associated unit attribute are converted to Quantity objects.

See also:

Parameters:
datanumpy ndarray, python:dict, python:list, astropy:table-like object, optional

Data to initialize table.

maskedbool, optional

Specify whether the table is masked.

namespython:list, optional

Specify column names.

dtypepython:list, optional

Specify column data types.

metapython:dict, optional

Metadata associated with the table.

copybool, optional

Copy the input data. Default is True.

rowsnumpy ndarray, python:list of python:list, optional

Row-oriented data for table instead of data argument.

copy_indicesbool, optional

Copy any indices in the input data. Default is True.

**kwargspython:dict, optional

Additional keyword args when converting table-like object.