interior#

sunpy.sun.models.interior = <QTable length=18>  radius   mass  luminosity temperature density   solRad solMass   solLum        MK     g / cm3  float64 float64  float64     float64   float64  ------- ------- ---------- ----------- --------     0.0     0.0        0.0      15.513   147.74    0.01  0.0001     0.0009       15.48   146.66   0.022   0.002      0.009       15.36   142.73   0.061    0.02      0.154      14.404    116.1    0.09   0.057      0.365       13.37    93.35    0.12   0.115      0.594       12.25    72.73   0.166   0.235      0.845       10.53    48.19   0.202   0.341       0.94         9.3    34.28   0.246    0.47      0.985       8.035   21.958   0.281   0.562      0.997       7.214   15.157   0.317   0.647      0.992       6.461   10.157    0.37   0.748     0.9996       5.531    5.566   0.453   0.854        1.0       4.426    2.259   0.611   0.951        1.0       2.981   0.4483  0.7304  0.9809        1.0       2.035   0.1528   0.862  0.9964        1.0       0.884    0.042   0.965  0.9999        1.0      0.1818  0.00361     1.0     1.0        1.0     0.00577 1.99e-07#

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.

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 the copy 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.