知って得するPandasのTips

Python, Programming30 November 2020

binで区切った各範囲の左端と右端の値

bins = pd.qcut(${SERIES}, 3)
  • 左端
bins[0].left
  • 左端
bins[0].right