evolution#
- sunpy.sun.models.evolution = <QTable length=16> time luminosity radius central temperature Gyr solLum solRad MK float64 float64 float64 float64 ------- ---------- ------- ------------------- 0.0 0.7688 0.872 13.35 0.143 0.7248 0.885 13.46 0.856 0.7621 0.902 13.68 1.863 0.8156 0.924 14.08 2.193 0.8352 0.932 14.22 3.02 0.8855 0.953 14.6 3.977 0.9522 0.981 15.12 4.587 1.0 1.0 15.51 5.506 1.079 1.035 16.18 6.074 1.133 1.059 16.65 6.577 1.186 1.082 17.13 7.027 1.238 1.105 17.62 7.728 1.318 1.143 18.42 8.258 1.399 1.18 18.74 8.7566 1.494 1.224 18.81 9.805 1.76 1.361 19.25#
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 toTable
except that columns with an associatedunit
attribute are converted toQuantity
objects.For more information see:
- Parameters:
data (numpy ndarray, dict, list, table-like object, optional) – Data to initialize table.
masked (bool, optional) – Specify whether the table is masked.
names (list, optional) – Specify column names.
dtype (list, optional) – Specify column data types.
meta (dict, optional) – Metadata associated with the table.
copy (bool, optional) – Copy the input data. If the input is a (Q)Table the
meta
is always copied regardless of thecopy
parameter. Default is True.rows (numpy ndarray, list of list, optional) – Row-oriented data for table instead of
data
argument.copy_indices (bool, optional) – Copy any indices in the input data. Default is True.
units (list, dict, optional) – List or dict of units to apply to columns.
descriptions (list, dict, optional) – List or dict of descriptions to apply to columns.
**kwargs (dict, optional) – Additional keyword args when converting table-like object.