Skip to content

chainladder 0.7.8

Compare
Choose a tag to compare
@jbogaardt jbogaardt released this 23 Oct 03:18
· 879 commits to master since this release

Bug Fixes

  • Resolved #87 val_to_dev with malformed triangle

Enhancements

  • Major overhaul of Triangle internals for better code clarity and more efficiency
  • Made sparse operations more efficient for larger triangles
  • to_frame now works on Triangles that are 3D or 4D. For example clrd.to_frame()
  • Advanced groupby operations supported. For (trivial) example:
clrd = cl.load_sample('clrd')
# Split companies with names less than 15 characters vs those above: 
clrd.groupby(clrd.index['GRNAME'].str.len()<15).sum()