Use MultiIndex for ExtraP Functions #15
Labels
area-extrap
Issues and PRs involving Thicket's support for Extra-P
priority-normal
Normal priority issues and PRs
type-feature
Requests for new features or PRs which implement new features
The
componentize_statsframe
and_add_extrap_statistics
extrap model functions both add a lot of columns to the statsframe.Statsframe
Currently, we are appending strings to the column name to distinguish them between each other. This becomes very messy fast and is not user friendly. I propose pulling out the common strings between the columns, like
avg#inclusive#sum#time.duration
, into a higher-level column index, and let the different strings distinguish each column, likemodel
,RSS
,rRSS
.And what if our statsframe already had other statistics and/or models in it? Our problem would only become worse. So I believe we can leverage multi-indexing to help us organize the statsframe.
The text was updated successfully, but these errors were encountered: