-
craftutils.wrap.dragons.Table.pprint_all(max_lines=
- 1, max_width=- 1, show_name=True, show_unit=None, show_dtype=False, align=None) Print a formatted string representation of the entire table.
This method is the same as astropy.table.Table.pprint except that the default
max_linesandmax_widthare both -1 so that by default the entire table is printed instead of restricting to the size of the screen terminal.Parameters¶
- max_linesint or None
Maximum number of lines in table output.
- max_widthint or None
Maximum character width of output.
- show_namebool
Include a header row for column names. Default is True.
- show_unitbool
Include a header row for unit. Default is to show a row for units only if one or more columns has a defined value for the unit.
- show_dtypebool
Include a header row for column dtypes. Default is False.
- alignstr or list or tuple or None
Left/right alignment of columns. Default is right (None) for all columns. Other allowed values are ‘>’, ‘<’, ‘^’, and ‘0=’ for right, left, centered, and 0-padded, respectively. A list of strings can be provided for alignment of tables with multiple columns.