写了一个函数,找到一个信号的峰值和低谷,并输出到numpy库中的两个ndarray对象,这些nldarray对象名为mintab和maxtab,其索引是时间戳,其值是峰值。
我想将此数据绘制为散点图,时间戳为x轴,峰值为y,所以我写道:
xMax = maxtab[:,0]
yMax = maxtab[:,1]
xMin = mintab[:,0]
yMin = mintab[:,1]
mpl.rc('figure', figsize=(20, 2)) # configure plot window size
plt.scatter(xMax, yMax, color='g', alpha=1)
plt.scatter(xMin, yMin, color= 'r', alpha = 1)
但我不断收到错误消息:IndexError: too many indices
并指向xMin = mintab[:,0]
行
我不明白为什么会这样,我在Google上找不到任何关于它的内容。
答案 0 :(得分:1)
我很惊讶你没有得到一个不可避免的类型错误:
In [1]: df = pd.DataFrame([[1, 2], [3, 4]])
In [2]: df[:, 0]
# TypeError: unhashable type
如果要以这种方式选择0列,则应使用loc:
In [3]: df.loc[:, 0]
Out[3]:
0 1
1 3
Name: 0, dtype: int64
或直接选择列:
In [4]: df[0]
Out[4]:
0 1
1 3
Name: 0, dtype: int64
如果要指定第0列(无论标签如何),请使用iloc:
In [5]: df.iloc[:, 0]
Out[5]:
0 1
1 3
Name: 0, dtype: int64