Participer au site avec un Tip
Rechercher
 

Améliorations / Corrections

Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.

Emplacement :

Description des améliorations :

Classe « IntervalIndex »

Méthode pandas.IntervalIndex.intersection

Signature de la méthode intersection

def intersection(self, other, sort=False) -> pandas.core.indexes.base.Index 

Description

intersection.__doc__

Form the intersection of two Index objects.

This returns a new Index with elements common to the index and `other`.

Parameters
----------
other : Index or array-like
sort : False or None, default False
    Whether to sort the resulting index.

    * False : do not sort the result.
    * None : sort the result, except when `self` and `other` are equal
      or when the values cannot be compared.

    .. versionadded:: 0.24.0

    .. versionchanged:: 0.24.1

       Changed the default from ``True`` to ``False``, to match
       the behaviour of 0.23.4 and earlier.

Returns
-------
intersection : Index

Examples
--------
>>> idx1 = pd.Index([1, 2, 3, 4])
>>> idx2 = pd.Index([3, 4, 5, 6])
>>> idx1.intersection(idx2)
Int64Index([3, 4], dtype='int64')