对于以下内容:
import scipy as sp
from scipy import stats
statistic, bin_edges = sp.stats.binned_statistic(step_data, EG_data, bins=20)
我收到错误:
statistic,bin_edges = sp.stats.binned_statistic(step_data,EG_data, 箱= 20)
ValueError:解压缩的值太多(预期2)
但是,输入数组的尺寸似乎是正确的(对吗?):
step_data.shape
>> (6138,)
EG_data.shape
>> (6138,)
任何解决方案?