Is your feature request related to a problem? Please describe.
It should be possible to specify the columns to be summarised in the _make_summary()-method. Currently the default value for select_columns is True, and the columns_to_keep-list is hardcoded, containing only:
The alternative at the moment seems to be to pass select_columns=False in summary_kwargs. Being able to specify the columns_to_keep yields a little more flexibility.
Describe the solution you'd like
Make the columns_to_keep-list passble in summary_kwargs.
Additional context
Related to #303, and suggested in the comments there:
More generally, is it possible to customize the summary features locally by passing in arguments to `make_summary`, or is the only way to overwrite the `cellpy` code?
Is your feature request related to a problem? Please describe. It should be possible to specify the columns to be summarised in the
_make_summary()
-method. Currently the default value forselect_columns
isTrue
, and thecolumns_to_keep
-list is hardcoded, containing only:The alternative at the moment seems to be to pass
select_columns=False
insummary_kwargs
. Being able to specify thecolumns_to_keep
yields a little more flexibility.Describe the solution you'd like Make the
columns_to_keep
-list passble insummary_kwargs
.Additional context
Related to #303, and suggested in the comments there:
Originally posted by @valentinsulzer in https://github.com/jepegit/cellpy/issues/303#issuecomment-2090938849