Hi!
From scipy I am using the interpolate.splrep and interpolate.splev functions to get interpolate my data set. Unsurprisingly, this does not work very well if I try to get an interpolated value near the edges of the data set.
I came up with a workaround (extending the data set by two additional entries which have the same value as the last "regular" entry of the data set; which seems to work), but I am wondering if either I shoult use another interpolation function, or if there is a common way to deal with this.
Thanks in advance!