Conf¶
-
class
astropy.table.Conf[source]¶ Bases:
astropy.config.ConfigNamespaceConfiguration parameters for
astropy.table.Attributes Summary
auto_colnameThe template that determines the name of a column if it cannot be determined. default_notebook_table_classThe table class to be used in Jupyter notebooks when displaying tables (and not overridden). replace_inplaceAlways use in-place update of a table column when using setitem, e.g. replace_warningsList of conditions for issuing a warning when replacing a table column using setitem, e.g. Attributes Documentation
-
auto_colname¶ The template that determines the name of a column if it cannot be determined. Uses new-style (format method) string formatting.
-
default_notebook_table_class¶ The table class to be used in Jupyter notebooks when displaying tables (and not overridden). See <http://getbootstrap.com/css/#tables for a list of useful bootstrap classes.
-
replace_inplace¶ Always use in-place update of a table column when using setitem, e.g. t[‘a’] = value. This overrides the default behavior of replacing the column entirely with the new value when possible. This configuration option will be deprecated and then removed in subsequent major releases.
-
replace_warnings¶ List of conditions for issuing a warning when replacing a table column using setitem, e.g. t[‘a’] = value. Allowed options are ‘always’, ‘slice’, ‘refcount’, ‘attributes’.
-