我的数据集看起来像这样:
position number_of_tag_at_this_position
3 4
8 6
13 25
23 12
我想对此数据集应用三次样条插值来插值标签密度;这样做,我跑:
import numpy as np
from scipy import interpolate`
x = [3,8,13,23]`
y = [4,6,25,12]`
tck = interpolate.splrep(x,y) # cubic`
现在,我想在插值的每个点计算函数的导数,我该怎么做? 谢谢你的帮助!
答案 0 :(得分:2)