PprintIncludeExclude#
- class astropy.table.PprintIncludeExclude(default=None)[source]#
 Bases:
TableAttributeMaintain tuple that controls table column visibility for print output.
This is a descriptor that inherits from MetaAttribute so that the attribute value is stored in the table meta[‘__attributes__’].
This gets used for the
pprint_include_namesandpprint_exclude_namesTable attributes.Methods Summary
__call__()Get the value of the attribute.
add(names)Add
namesto the include/exclude attribute.remove(names)Remove
namesfrom the include/exclude attribute.set(names)Set value of include/exclude attribute to
names.Methods Documentation
- __call__()[source]#
 Get the value of the attribute.
- Returns:
 - names
python:None,python:tuple Include/exclude names
- names
 
- add(names)[source]#
 Add
namesto the include/exclude attribute.- Parameters:
 - names
python:str,python:list,python:tuple Column name(s) to add
- names