Skip to content

Release v3.5.0

Latest

Choose a tag to compare

@danielhuppmann danielhuppmann released this 05 Aug 20:59
6a1b2a2

Release v3.5.0

Highlights

Support the central 90% interval [p5-p95] as a limits setting in the statistics module.

API changes

The method len(df) is marked as deprecated. Use either len(df.series) for the number of datapoints or len(df.index) for the number of scenarios.

The method Statistics.summarize() includes a new argument limits that can take the values 'full range', 'interquartile' or 'central 90%'. The previous boolean arguments fullrange and interquartile are marked as deprecated.

Individual updates

  • #993 Mark len(df) as deprecated
  • #991 Support the central 90% as limits in the statistics summary
  • #989 Add an IamDataFrame.series attribute to get timeseries data as pd.Series