EstimationTableColumn Class

Definition of a single column in an EstimationTable.

Constructor

EstimationTableColumn(function: Callable[[EstimationTableEntry], Any], formatter: Callable[[Any], Any] | None = None)

Parameters

Name Description
function
Required
formatter
Default value: None

Attributes

formatter

An optional callable that transforms the raw value for display purposes (e.g. converting nanoseconds to a pandas.Timedelta).

formatter: Callable[[Any], Any] | None

function

A callable that extracts the raw column value from an EstimationTableEntry.

function: Callable[[EstimationTableEntry], Any]