首页->Python期末
时间序列的重采样是时间序列频率转换的过程,高频率聚合到低频率称为______。
答: 下采样

更多Python期末试题
- 1使用Python定义函数时,语句中需要包括:()。
- 2字符串不可以转化为数值。
- 3在Python中,字典最外层使用:
- 4以下程序的运行结果是()。
i=101
s=0
while i<=100:
s=s+i
i=i-1
print(s)
- 5补全查找数组np.array([1,2,3,2,3,4,3,4,5,6])中的唯一值的数量的代码。
array=np.array([1,2,3,2,3,4,3,4,5,6])
counts=___