IndexError: single positional indexer is out-of-bounds

问题背景

使用pandas模块对数据进行计算,需要计算出如下每日的日均变化量
IndexError: single positional indexer is out-of-bounds_第1张图片
报错

IndexError: single positional indexer is out-of-bounds

问题解决

指索引下标越界了,所以找到报错的地方检查下标是否在数据列表范围内

说白一些就是列表的最后一行数据不能向下计算了,需要忽略
IndexError: single positional indexer is out-of-bounds_第2张图片
想办法把他忽略掉,可以再遍历的时候将数值减一
IndexError: single positional indexer is out-of-bounds_第3张图片

你可能感兴趣的:(错误,错误)