IntervalIndex.from_breaks()

pandas.IntervalIndex.from_breaks

classmethod IntervalIndex.from_breaks(breaks, closed=’right’, name=None, copy=False) [source]

Construct an IntervalIndex from an array of splits

Parameters:

breaks : array-like (1-dimensional)

Left and right bounds for each interval.

closed : {‘left’, ‘right’, ‘both’, ‘neither’}, optional

Whether the intervals are closed on the left-side, right-side, both or neither. Defaults to ‘right’.

name : object, optional

Name to be stored in the index.

copy : boolean, default False

copy the data

Examples

>>> IntervalIndex.from_breaks([0, 1, 2, 3])
IntervalIndex(left=[0, 1, 2],
              right=[1, 2, 3],
              closed='right')

© 2008–2012, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team
Licensed under the 3-clause BSD License.
http://pandas.pydata.org/pandas-docs/version/0.20.2/generated/pandas.IntervalIndex.from_breaks.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部