captest.capdata.CapData.get_summary

CapData.get_summary()

Return a DataFrame summarizing the applied filter chain.

Rebuilt from self.filters: one row per step, with the step’s class name (function_name), the rows remaining after it (pts_after_filter), the rows it removed (pts_removed, derived from the prior step’s ix_after via _pts_before), and its rendered arguments (filter_arguments). The row index is a MultiIndex of (self.name, label) where label comes from _step_labels.

Returns an empty DataFrame (standard columns, no rows) when no filters have been applied.

Return type:

pandas.DataFrame