
    Q3j                     r    d dl Zd dlmZmZ d dlmZmZ d dlm	Z	m
Z
mZmZmZmZmZ d dlmZ  G d de	      Zy)    N)average_precision_scoreprecision_recall_curve)_safe_indexingcheck_array)"_BinaryClassifierCurveDisplayMixin_check_param_lengths_convert_to_list_leaving_none_deprecate_estimator_name_deprecate_y_pred_parameter_despine_validate_style_kwargs)_get_response_values_binaryc                        e Zd ZdZdddddddZ fdZ	 dddddddd	Zeddd
dddddddd
d       Ze	 dddddddddddd
d       Z	eddd
dddddddd
d       Z
 xZS )PrecisionRecallDisplaya  Precision Recall visualization.

    It is recommended to use
    :func:`~sklearn.metrics.PrecisionRecallDisplay.from_estimator` or
    :func:`~sklearn.metrics.PrecisionRecallDisplay.from_predictions` to create
    a :class:`~sklearn.metrics.PrecisionRecallDisplay`. All parameters are
    stored as attributes.

    For general information regarding `scikit-learn` visualization tools, see
    the :ref:`Visualization Guide <visualizations>`.
    For guidance on interpreting these plots, refer to the :ref:`Model
    Evaluation Guide <precision_recall_f_measure_metrics>`.

    Parameters
    ----------
    precision : ndarray or list of ndarrays
        Precision values. Each ndarray should contain values for a single curve.
        If plotting multiple curves, list should be of same length as `recall`.

        .. versionchanged:: 1.9
            Now accepts a list for plotting multiple curves.

    recall : ndarray or list of ndarrays
        Recall values. Each ndarray should contain values for a single curve.
        If plotting multiple curves, list should be of same length as `precision`.

        .. versionchanged:: 1.9
            Now accepts a list for plotting multiple curves.

    average_precision : float or list of floats, default=None
        Average precision, used for labeling each curve in the legend.
        If plotting multiple curves, should be a list of the same length as `precision`
        and `recall`. If `None`, average precision values are not shown in the legend.

        .. versionchanged:: 1.9
            Now accepts a list for plotting multiple curves.

    name : str or list of str, default=None
        Name for labeling legend entries. The number of legend entries is determined
        by the `curve_kwargs` passed to `plot`, and is not affected by `name`.

        If a string is provided, it will be used to either label the single legend
        entry or if there are multiple legend entries, label each individual curve
        with the same name.

        If a list is provided, it will be used to label each curve individually.
        Passing a list will raise an error if `curve_kwargs` is not a list to avoid
        labeling individual curves that have the same appearance.

        If `None`, no name is shown in the legend.

        .. versionchanged:: 1.8
            `estimator_name` was deprecated in favor of `name`.

        .. versionchanged:: 1.9
            `name` can now take a list of str for multiple curves.

    pos_label : int, float, bool or str, default=None
        The class considered the positive class when precision and recall metrics
        computed. If not `None`, this value is displayed in the x- and y-axes labels.

        .. versionadded:: 0.24

    prevalence_pos_label : float or list of floats, default=None
        The prevalence of the positive label. It is used for plotting the
        chance level lines. If None, no chance level line will be plotted
        even if `plot_chance_level` is set to True when plotting.

        .. versionadded:: 1.3

        .. versionchanged:: 1.9
            May now be list of floats for when multiple curves plotted.

    estimator_name : str, default=None
        Name of estimator. If None, the estimator name is not shown.

        .. deprecated:: 1.8
            `estimator_name` is deprecated and will be removed in 1.10. Use `name`
            instead.

    Attributes
    ----------
    line_ : matplotlib Artist or list of Artists
        Precision recall curve(s).

        .. versionchanged:: 1.9
            This attribute can now be a list of Artists, for when multiple curves
            are plotted.

    chance_level_ : matplotlib Artist or list of Artists or None
        Chance level line(s). It is `None` if the chance level is not plotted.

        .. versionadded:: 1.3

        .. versionchanged:: 1.9
            This attribute can now be a list of Artists, for when multiple curves
            are plotted.

    ax_ : matplotlib Axes
        Axes with precision recall curve.

    figure_ : matplotlib Figure
        Figure containing the curve.

    See Also
    --------
    precision_recall_curve : Compute precision-recall pairs for different
        probability thresholds.
    PrecisionRecallDisplay.from_estimator : Plot Precision Recall Curve given
        a binary classifier.
    PrecisionRecallDisplay.from_predictions : Plot Precision Recall Curve
        using predictions from a binary classifier.

    Notes
    -----
    The average precision (cf. :func:`~sklearn.metrics.average_precision_score`) in
    scikit-learn is computed without any interpolation. To be consistent with
    this metric, the precision-recall curve is plotted without any
    interpolation as well (step-wise style).

    To enable interpolation, pass `curve_kwargs={"drawstyle": "default"}` to
    meth:`plot`, :meth:`from_estimator`, or :meth:`from_predictions`.
    However, the curve will not be strictly consistent with the reported
    average precision.

    Examples
    --------
    >>> import matplotlib.pyplot as plt
    >>> from sklearn.datasets import make_classification
    >>> from sklearn.metrics import (precision_recall_curve,
    ...                              PrecisionRecallDisplay)
    >>> from sklearn.model_selection import train_test_split
    >>> from sklearn.svm import SVC
    >>> X, y = make_classification(random_state=0)
    >>> X_train, X_test, y_train, y_test = train_test_split(X, y,
    ...                                                     random_state=0)
    >>> clf = SVC(random_state=0)
    >>> clf.fit(X_train, y_train)
    SVC(random_state=0)
    >>> predictions = clf.predict(X_test)
    >>> precision, recall, _ = precision_recall_curve(y_test, predictions)
    >>> disp = PrecisionRecallDisplay(precision=precision, recall=recall)
    >>> disp.plot()
    <...>
    >>> plt.show()
    N
deprecated)average_precisionname	pos_labelprevalence_pos_labelestimator_namec                n    || _         || _        || _        t        ||d      | _        || _        || _        y )N1.8)	precisionrecallr   r
   r   r   r   )selfr   r   r   r   r   r   r   s           Y/DATA/.local/lib/python3.12/site-packages/sklearn/metrics/_plot/precision_recall_curve.py__init__zPrecisionRecallDisplay.__init__   s9     #!2-ndEJ	"$8!    c                   t         |   ||      \  | _        | _        }t	        | j
                        }t	        | j                        }t	        | j                        }t	        | j                        }t	        |      }||d}t        |t              r!t        |      dk7  r|j                  d|i       t        ||d|d       |||||fS )Naxr   )zself.average_precisionzself.prevalence_pos_label   z'name' (or self.name))zself.precisionzself.recallr   )requiredoptional
class_name)super_validate_plot_paramsax_figure_r	   r   r   r   r   
isinstancelistlenupdater   )	r   r!   r   r   r   r   r   r$   	__class__s	           r   r'   z,PrecisionRecallDisplay._validate_plot_params   s    ',w'DQU'D'V$$,1$..A	.t{{;9$:P:PQ<T=V=VW,T2 '8)=
 dD!c$i1nOO4d;<(1&I/	

 &"3T;OOOr   F)r   curve_kwargsplot_chance_levelchance_level_kwdespinec          	         | j                  ||      \  }}	}
}}t        |      }| j                  |||
      \  }
} | j                  |||df|ddiddddd	d
|}g | _        t        |	||      D ]=  \  }}}| j                  j                   | j                  j                  ||fi |       ? t        | j                        dk(  r| j                  d   | _        | j                  d| j                   dnd}d|z   }d|z   }| j                  j                  |d|dd       |r| j                  t        d      ddd}|dkD  rd|d<   |i }t        ||      }g | _        |D ];  }| j                  j                   | j                  j                  d||ffi |       = d|vr^|dk(  r
d|d   ddn0dt        j                   |      ddt        j"                  |      dd}| j                  d   j%                  |       |dk(  r| j                  d   | _        nd| _        |rt'        | j                         |d   j)                  d      |r-|j)                  d      | j                  j+                  d !       | S )"a,  Plot visualization.

        Parameters
        ----------
        ax : Matplotlib Axes, default=None
            Axes object to plot on. If `None`, a new figure and axes is
            created.

        name : str or list of str, default=None
            Name for labeling legend entries. The number of legend entries
            is determined by `curve_kwargs`, and is not affected by `name`.

            If a string is provided, it will be used to either label the single legend
            entry or if there are multiple legend entries, label each individual curve
            with the same name.

            If a list is provided, it will be used to label each curve individually.
            Passing a list will raise an error if `curve_kwargs` is not a list to avoid
            labeling individual curves that have the same appearance.

            If `None`, set to `name` provided at `PrecisionRecallDisplay`
            initialization. If still `None`, no name is shown in the legend.

            .. versionchanged:: 1.9
                Now accepts a list for plotting multiple curves.

        curve_kwargs : dict or list of dict, default=None
            Keywords arguments to be passed to matplotlib's `plot` function
            to draw individual precision-recall curves. For single curve plotting, this
            should be a dictionary. For multi-curve plotting, if a list is provided,
            the parameters are applied to each precision-recall curve
            sequentially and a legend entry is added for each curve.
            If a single dictionary is provided, the same parameters are applied
            to all curves and a single legend entry for all curves is added,
            labeled with the mean average precision.

            .. versionadded:: 1.9

        plot_chance_level : bool, default=False
            Whether to plot the chance level. The chance level is the prevalence
            of the positive label computed from the data passed during
            :meth:`from_estimator` or :meth:`from_predictions` call.

            .. versionadded:: 1.3

        chance_level_kw : dict, default=None
            Keyword arguments to be passed to matplotlib's `plot` for rendering
            the chance level line.

            .. versionadded:: 1.3

        despine : bool, default=False
            Whether to remove the top and right spines from the plot.

            .. versionadded:: 1.6

        **kwargs : dict
            Keyword arguments to be passed to matplotlib's `plot`.

            .. deprecated:: 1.9
                kwargs is deprecated and will be removed in 1.11. Pass matplotlib
                arguments to `curve_kwargs` as a dictionary instead.

        Returns
        -------
        display : :class:`~sklearn.metrics.PrecisionRecallDisplay`
            Object that stores computed values.

        Notes
        -----
        The average precision (cf. :func:`~sklearn.metrics.average_precision_score`)
        in scikit-learn is computed without any interpolation. To be consistent
        with this metric, the precision-recall curve is plotted without any
        interpolation as well (step-wise style).

        To enable interpolation, pass `curve_kwargs={"drawstyle": "default"}`.
        However, the curve will not be strictly consistent with the reported
        average precision.
        r    AP	drawstylez
steps-postg      ?z--blue)alpha	linestylecolorz1.11)r/   default_curve_kwargsdefault_multi_curve_kwargsremoved_versionr"   r   Nz (Positive label: ) Recall	Precision)g{Gzg)\(?equal)xlabelxlimylabelylimaspecta  You must provide prevalence_pos_label when constructing the PrecisionRecallDisplay object in order to plot the chance level line. Alternatively, you may use PrecisionRecallDisplay.from_estimator or PrecisionRecallDisplay.from_predictions to automatically set prevalence_pos_labelk)r9   r8   g333333?r7   )r   r"   labelzChance level (AP = z0.2fz +/- z
lower left)loc)r'   r,   _get_legend_metric_validate_curve_kwargsline_zipextendr(   plotr   setr   
ValueErrorr   chance_level_npmeanstd	set_labelr   getlegend)r   r!   r   r/   r0   r1   r2   kwargsr   r   r   r   n_curveslegend_metric
recall_valprecision_valcurve_kwarginfo_pos_labelrB   rD   default_chance_level_kwargs
prevalencerH   s                          r   rO   zPrecisionRecallDisplay.plot   s   v &&"4&8 	I	6,d4H y>+/+B+B($5,
(= 3t22	

 &"-|!<!(
 #
 
 
69I|7
2J{ JJmdhhmmJUUV7

 tzz?aADJ 7;nn6P  02VX 	 N*~- 	 	
 ((0 @  !+' !|7:+G4&"$4+_O "$D2
""))!DHHMM#Z0 * 3 o-  1} **>q*A$)GqI.rww7K/LT.R S66"67=Q@  ""1%//61}%)%7%7%:"!%DTXX ?w'3/"5"5g">"JHHOOO-r   auto)
sample_weightdrop_intermediateresponse_methodr   r   r!   r/   r0   r1   r2   c       
         t    | j                  ||||||      \  }}} | j                  ||f|||||	|
|||d	|S )a  Plot precision-recall curve given an estimator and some data.

        For general information regarding `scikit-learn` visualization tools, see
        the :ref:`Visualization Guide <visualizations>`.
        For guidance on interpreting these plots, refer to the :ref:`Model
        Evaluation Guide <precision_recall_f_measure_metrics>`.

        Parameters
        ----------
        estimator : estimator instance
            Fitted classifier or a fitted :class:`~sklearn.pipeline.Pipeline`
            in which the last estimator is a classifier.

        X : {array-like, sparse matrix} of shape (n_samples, n_features)
            Input values.

        y : array-like of shape (n_samples,)
            Target values.

        sample_weight : array-like of shape (n_samples,), default=None
            Sample weights.

        drop_intermediate : bool, default=False
            Whether to drop some suboptimal thresholds which would not appear
            on a plotted precision-recall curve. This is useful in order to
            create lighter precision-recall curves.

            .. versionadded:: 1.3

        response_method : {'predict_proba', 'decision_function', 'auto'},             default='auto'
            Specifies whether to use :term:`predict_proba` or
            :term:`decision_function` as the target response. If set to 'auto',
            :term:`predict_proba` is tried first and if it does not exist
            :term:`decision_function` is tried next.

        pos_label : int, float, bool or str, default=None
            The class considered as the positive class when computing the
            precision and recall metrics. By default, `estimators.classes_[1]`
            is considered as the positive class.

        name : str, default=None
            Name for labeling curve. If `None`, no name is used.

        ax : matplotlib axes, default=None
            Axes object to plot on. If `None`, a new figure and axes is created.

        curve_kwargs : dict, default=None
            Keywords arguments to be passed to matplotlib's `plot` function.

            .. versionadded:: 1.9

        plot_chance_level : bool, default=False
            Whether to plot the chance level. The chance level is the prevalence
            of the positive label computed from the data passed during
            :meth:`from_estimator` or :meth:`from_predictions` call.

            .. versionadded:: 1.3

        chance_level_kw : dict, default=None
            Keyword arguments to be passed to matplotlib's `plot` for rendering
            the chance level line.

            .. versionadded:: 1.3

        despine : bool, default=False
            Whether to remove the top and right spines from the plot.

            .. versionadded:: 1.6

        **kwargs : dict
            Keyword arguments to be passed to matplotlib's `plot`.

            .. deprecated:: 1.9
                kwargs is deprecated and will be removed in 1.11. Pass matplotlib
                arguments to `curve_kwargs` as a dictionary instead.

        Returns
        -------
        display : :class:`~sklearn.metrics.PrecisionRecallDisplay`

        See Also
        --------
        PrecisionRecallDisplay.from_predictions : Plot precision-recall curve
            using estimated probabilities or output of decision function.

        Notes
        -----
        The average precision (cf. :func:`~sklearn.metrics.average_precision_score`)
        in scikit-learn is computed without any interpolation. To be consistent
        with this metric, the precision-recall curve is plotted without any
        interpolation as well (step-wise style).

        To enable interpolation, pass `curve_kwargs={"drawstyle": "default"}`.
        However, the curve will not be strictly consistent with the reported
        average precision.

        Examples
        --------
        >>> import matplotlib.pyplot as plt
        >>> from sklearn.datasets import make_classification
        >>> from sklearn.metrics import PrecisionRecallDisplay
        >>> from sklearn.model_selection import train_test_split
        >>> from sklearn.linear_model import LogisticRegression
        >>> X, y = make_classification(random_state=0)
        >>> X_train, X_test, y_train, y_test = train_test_split(
        ...         X, y, random_state=0)
        >>> clf = LogisticRegression()
        >>> clf.fit(X_train, y_train)
        LogisticRegression()
        >>> PrecisionRecallDisplay.from_estimator(
        ...    clf, X_test, y_test)
        <...>
        >>> plt.show()
        )re   r   r   )	rc   rd   r   r   r!   r/   r0   r1   r2   )!_validate_and_get_response_valuesfrom_predictions)cls	estimatorXyrc   rd   re   r   r   r!   r/   r0   r1   r2   rY   y_scores                   r   from_estimatorz%PrecisionRecallDisplay.from_estimator  s}    L $'#H#H+ $I $
 D $s##
 (/%/+
 
 	
r   )
rc   rd   r   r   r!   r/   r0   r1   r2   y_predc       
   
      <   t        |dd      }t        ||d      }| j                  |||||      \  }}t        |||||      \  }}}t	        ||||      }||k(  j                         t        |      z  } | ||||||      } |j                  d
||||	|
|d	|S )a  Plot precision-recall curve given binary class predictions.

        For general information regarding `scikit-learn` visualization tools, see
        the :ref:`Visualization Guide <visualizations>`.
        For guidance on interpreting these plots, refer to the :ref:`Model
        Evaluation Guide <precision_recall_f_measure_metrics>`.

        Parameters
        ----------
        y_true : array-like of shape (n_samples,)
            True binary labels.

        y_score : array-like of shape (n_samples,)
            Estimated probabilities or output of decision function.

            .. versionadded:: 1.8
                `y_pred` has been renamed to `y_score`.

        sample_weight : array-like of shape (n_samples,), default=None
            Sample weights.

        drop_intermediate : bool, default=False
            Whether to drop some suboptimal thresholds which would not appear
            on a plotted precision-recall curve. This is useful in order to
            create lighter precision-recall curves.

            .. versionadded:: 1.3

        pos_label : int, float, bool or str, default=None
            The class considered as the positive class when computing the
            precision and recall metrics. When `pos_label=None`, if `y_true` is
            in {-1, 1} or {0, 1}, `pos_label` is set to 1, otherwise an error
            will be raised.

        name : str, default=None
            Name for labeling curve. If `None`, name will be set to
            `"Classifier"`.

        ax : matplotlib axes, default=None
            Axes object to plot on. If `None`, a new figure and axes is created.

        curve_kwargs : dict, default=None
            Keywords arguments to be passed to matplotlib's `plot` function.

            .. versionadded:: 1.9

        plot_chance_level : bool, default=False
            Whether to plot the chance level. The chance level is the prevalence
            of the positive label computed from the data passed during
            :meth:`from_estimator` or :meth:`from_predictions` call.

            .. versionadded:: 1.3

        chance_level_kw : dict, default=None
            Keyword arguments to be passed to matplotlib's `plot` for rendering
            the chance level line.

            .. versionadded:: 1.3

        despine : bool, default=False
            Whether to remove the top and right spines from the plot.

            .. versionadded:: 1.6

        y_pred : array-like of shape (n_samples,)
            Estimated probabilities or output of decision function.

            .. deprecated:: 1.8
                `y_pred` is deprecated and will be removed in 1.10. Use
                `y_score` instead.

        **kwargs : dict
            Keyword arguments to be passed to matplotlib's `plot`.

            .. deprecated:: 1.9
                kwargs is deprecated and will be removed in 1.11. Pass matplotlib
                arguments to `curve_kwargs` as a dictionary instead.

        Returns
        -------
        display : :class:`~sklearn.metrics.PrecisionRecallDisplay`

        See Also
        --------
        PrecisionRecallDisplay.from_estimator : Plot precision-recall curve
            using an estimator.

        Notes
        -----
        The average precision (cf. :func:`~sklearn.metrics.average_precision_score`)
        in scikit-learn is computed without any interpolation. To be consistent
        with this metric, the precision-recall curve is plotted without any
        interpolation as well (step-wise style).

        To enable interpolation, pass `curve_kwargs={"drawstyle": "default"}`.
        However, the curve will not be strictly consistent with the reported
        average precision.

        Examples
        --------
        >>> import matplotlib.pyplot as plt
        >>> from sklearn.datasets import make_classification
        >>> from sklearn.metrics import PrecisionRecallDisplay
        >>> from sklearn.model_selection import train_test_split
        >>> from sklearn.linear_model import LogisticRegression
        >>> X, y = make_classification(random_state=0)
        >>> X_train, X_test, y_train, y_test = train_test_split(
        ...         X, y, random_state=0)
        >>> clf = LogisticRegression()
        >>> clf.fit(X_train, y_train)
        LogisticRegression()
        >>> y_score = clf.predict_proba(X_test)[:, 1]
        >>> PrecisionRecallDisplay.from_predictions(
        ...    y_test, y_score)
        <...>
        >>> plt.show()
        FN)	ensure_2ddtyper   )rc   r   r   r   rc   rd   r   rc   r   r   r   r   r   r   )r!   r   r/   r0   r1   r2    )r   r   !_validate_from_predictions_paramsr   r   sumr,   rO   )ri   y_truerm   rc   rd   r   r   r!   r/   r0   r1   r2   ro   rY   r   r   _r   r   vizs                       r   rh   z'PrecisionRecallDisplay.from_predictions3  s    P VuDA-gvuE??G=ITX @ 
	4  6'/ 
	61 4Gy
 !') 388:S[H/!5
 sxx 
%/+
 
 	
r   T)
rc   rd   re   r   r   r!   r/   r0   chance_level_kwargsr2   c       
         L   | j                  ||||       g g }}g g }}t        |d   |d   d         D ]  \  }}t        ||      }t        |t        ||      ||      \  }}|dnt        ||      }t	        |||||      \  }}}t        ||||      }t        j                  ||k(        |j                  d	   z  }|j                  |       |j                  |       |j                  |       |j                  |         | |||||
      }|j                  |	|
|||      S )ad  Plot multi-fold precision-recall curves given cross-validation results.

        .. versionadded:: 1.9

        Parameters
        ----------
        cv_results : dict
            Dictionary as returned by :func:`~sklearn.model_selection.cross_validate`
            using `return_estimator=True` and `return_indices=True` (i.e., dictionary
            should contain the keys "estimator" and "indices").

        X : {array-like, sparse matrix} of shape (n_samples, n_features)
            Input values.

        y : array-like of shape (n_samples,)
            Target values.

        sample_weight : array-like of shape (n_samples,), default=None
            Sample weights.

        drop_intermediate : bool, default=True
            Whether to drop some suboptimal thresholds which would not appear
            on a plotted precision-recall curve. This is useful in order to
            create lighter precision-recall curves.

        response_method : {'predict_proba', 'decision_function', 'auto'}                 default='auto'
            Specifies whether to use :term:`predict_proba` or
            :term:`decision_function` as the target response. If set to 'auto',
            :term:`predict_proba` is tried first and if it does not exist
            :term:`decision_function` is tried next.

        pos_label : int, float, bool or str, default=None
            The class considered as the positive class when computing the precision
            and recall metrics. By default, `estimators.classes_[1]` is considered
            as the positive class.

        name : str or list of str, default=None
            Name for labeling legend entries. The number of legend entries
            is determined by `curve_kwargs`, and is not affected by `name`.

            If a string is provided, it will be used to either label the single legend
            entry or if there are multiple legend entries, label each individual curve
            with the same name.

            If a list is provided, it will be used to label each curve individually.
            Passing a list will raise an error if `curve_kwargs` is not a list to avoid
            labeling individual curves that have the same appearance.

            If `None`, no name is shown in the legend.

        ax : matplotlib axes, default=None
            Axes object to plot on. If `None`, a new figure and axes is
            created.

        curve_kwargs : dict or list of dict, default=None
            Dictionary with keywords passed to the matplotlib's `plot` function
            to draw the individual precision-recall curves. If a list is provided, the
            parameters are applied to the precision-recall curves of each CV fold
            sequentially. If a single dictionary is provided, the same
            parameters are applied to all precision-recall curves.

        plot_chance_level : bool, default=False
            Whether to plot the chance level lines.

        chance_level_kwargs : dict, default=None
            Keyword arguments to be passed to matplotlib's `plot` for rendering
            the chance level lines.

        despine : bool, default=False
            Whether to remove the top and right spines from the plot.

        Returns
        -------
        display : :class:`~sklearn.metrics.PrecisionRecallDisplay`

        See Also
        --------
        PrecisionRecallDisplay.from_predictions : Plot precision-recall curve
            using estimated probabilities or output of decision function.
        PrecisionRecallDisplay.from_estimator : Plot precision-recall curve
            using an estimator.
        precision_recall_curve : Compute precision-recall pairs for different
            probability thresholds.
        average_precision_score : Compute average precision (AP) from prediction scores.

        Notes
        -----
        The average precision (cf. :func:`~sklearn.metrics.average_precision_score`)
        in scikit-learn is computed without any interpolation. To be consistent
        with this metric, the precision-recall curve is plotted without any
        interpolation as well (step-wise style).

        To enable interpolation, pass `curve_kwargs={"drawstyle": "default"}`.
        However, the curve will not be strictly consistent with the reported
        average precision.

        Examples
        --------
        >>> import matplotlib.pyplot as plt
        >>> from sklearn.datasets import make_classification
        >>> from sklearn.metrics import PrecisionRecallDisplay
        >>> from sklearn.model_selection import cross_validate
        >>> from sklearn.svm import SVC
        >>> X, y = make_classification(random_state=0)
        >>> clf = SVC(random_state=0)
        >>> cv_results = cross_validate(
        ...     clf, X, y, cv=3, return_estimator=True, return_indices=True)
        >>> PrecisionRecallDisplay.from_cv_results(cv_results, X, y)
        <...>
        >>> plt.show()
        )rc   rj   indicestest)re   r   Nrs   rt   r   ru   )r!   r/   r0   r1   r2   ) _validate_from_cv_results_paramsrM   r   r   r   r   rS   count_nonzeroshapeappendrO   )ri   
cv_resultsrk   rl   rc   rd   re   r   r   r!   r/   r0   r|   r2   precision_foldsrecall_foldsap_foldsprevalence_pos_label_foldsrj   test_indicesry   ro   
pos_label_sample_weight_foldr   r   rz   r   r   r{   s                                 r   from_cv_resultsz&PrecisionRecallDisplay.from_cv_results  s   D 	,,1M 	- 	
 )+B/12,'*{#Z	%:6%B(
#I| $A|4F!<q,/ /#	"FJ !( #M<@ 
 $:$0"3$ Ivq !8*DV!   :!56aH ! ""9-'OO-.&--.BCG(
J %& !;
 xx%//  
 	
r   )N)__name__
__module____qualname____doc__r   r'   rO   classmethodrn   rh   r   __classcell__)r.   s   @r   r   r      s    Qp !#9$P0 C CJ  [
 [
z  k

 k
 k
Z   {
 {
r   r   )numpyrS   sklearn.metrics._rankingr   r   sklearn.utilsr   r   sklearn.utils._plottingr   r   r	   r
   r   r   r   sklearn.utils._responser   r   rv   r   r   <module>r      s4     T 5   @I
? I
r   