How To Interpolate A Cumulative Function In Python
I have a cumulative function (CDF) made of 6 points. I have to interpolate it so I used interp1d (from scipy.interpolate import interp1d), the results is the following: the blue d
Solution 1:
Try monotone interpolants, akima/pchip
Post a Comment for "How To Interpolate A Cumulative Function In Python"