查找特异数据(例如最大值,突变点等
Finding index of maximal value
1 2 3 4 5 |
# return the index of the maximal value in this series, where idx is abbr. of index Series.idxmax() # getting all data in this row df.iloc[Series.idmax(), :] |
});
Arnold Yuxuan Xie's Blog
查找特异数据(例如最大值,突变点等
1 2 3 4 5 |
# return the index of the maximal value in this series, where idx is abbr. of index Series.idxmax() # getting all data in this row df.iloc[Series.idmax(), :] |