Skip to content

chainladder 0.7.6

Compare
Choose a tag to compare
@jbogaardt jbogaardt released this 27 Aug 02:12
· 905 commits to master since this release

Enhancements

  • Four Dimensional slicing is now supported.
clrd = cl.load_sample('clrd')
clrd.iloc[[0,10, 3], 1:8, :5, :]
clrd.loc[:'Aegis Grp', 'CumPaidLoss':, '1990':'1994', :48]
  • #92 to_frame() now takes optional origin_as_datetime argument for better compatibility with various plotting libraries (Thank you @johalnes )
tri.to_frame(origin_as_datetime=True)

Bug Fixes

  • Patches to the interaction between sparse and numpy arrays to accomodate more scenarios.
  • Patches to multi-index broadcasting
  • Improved performance of latest_diagonal for sparse backends
  • #91 Bug fix to MackChainladder which errored on asymmetric triangles (Thank you @johalnes for reporting)