Ë
    ÷Q(h  ã                   óx   — d dl mZ d dlZddlmZmZ ddlmZ ddl	m
Z
mZ ddlmZmZ dd	lmZ  G d
„ dee«      Zy)é    )ÚRealNé   )ÚBaseEstimatorÚ_fit_context)ÚInterval)Úmean_variance_axisÚmin_max_axis)Úcheck_is_fittedÚvalidate_dataé   )ÚSelectorMixinc                   óz   ‡ — e Zd ZU dZd eeddd¬«      giZeed<   dd„Z	 e
d	¬
«      dd„«       Zd„ Zˆ fd„Zˆ xZS )ÚVarianceThresholdat  Feature selector that removes all low-variance features.

    This feature selection algorithm looks only at the features (X), not the
    desired outputs (y), and can thus be used for unsupervised learning.

    Read more in the :ref:`User Guide <variance_threshold>`.

    Parameters
    ----------
    threshold : float, default=0
        Features with a training-set variance lower than this threshold will
        be removed. The default is to keep all features with non-zero variance,
        i.e. remove the features that have the same value in all samples.

    Attributes
    ----------
    variances_ : array, shape (n_features,)
        Variances of individual features.

    n_features_in_ : int
        Number of features seen during :term:`fit`.

        .. versionadded:: 0.24

    feature_names_in_ : ndarray of shape (`n_features_in_`,)
        Names of features seen during :term:`fit`. Defined only when `X`
        has feature names that are all strings.

        .. versionadded:: 1.0

    See Also
    --------
    SelectFromModel: Meta-transformer for selecting features based on
        importance weights.
    SelectPercentile : Select features according to a percentile of the highest
        scores.
    SequentialFeatureSelector : Transformer that performs Sequential Feature
        Selection.

    Notes
    -----
    Allows NaN in the input.
    Raises ValueError if no feature in X meets the variance threshold.

    Examples
    --------
    The following dataset has integer features, two of which are the same
    in every sample. These are removed with the default setting for threshold::

        >>> from sklearn.feature_selection import VarianceThreshold
        >>> X = [[0, 2, 0, 3], [0, 1, 4, 3], [0, 1, 1, 3]]
        >>> selector = VarianceThreshold()
        >>> selector.fit_transform(X)
        array([[2, 0],
               [1, 4],
               [1, 1]])
    Ú	thresholdr   NÚleft)ÚclosedÚ_parameter_constraintsc                 ó   — || _         y ©N)r   )Úselfr   s     úk/var/www/skyplay_api_hub/venv/lib/python3.12/site-packages/sklearn/feature_selection/_variance_threshold.pyÚ__init__zVarianceThreshold.__init__N   s	   € Ø"ˆ�ó    T)Úprefer_skip_nested_validationc                 óþ  — t        | |dt        j                  d¬«      }t        |d«      r:t	        |d¬«      \  }| _        | j                  dk(  rXt        |d¬«      \  }}||z
  }nBt        j                  |d¬«      | _        | j                  dk(  rt        j                  |d¬«      }| j                  dk(  r=t        j                  | j
                  g«      }t        j                  |d¬«      | _        t        j                  t        j                  | j
                  «       | j
                  | j                  k  z  «      r=d}|j                  d   dk(  r|d	z  }t        |j!                  | j                  «      «      ‚| S )
a  Learn empirical variances from X.

        Parameters
        ----------
        X : {array-like, sparse matrix}, shape (n_samples, n_features)
            Data from which to compute variances, where `n_samples` is
            the number of samples and `n_features` is the number of features.

        y : any, default=None
            Ignored. This parameter exists only for compatibility with
            sklearn.pipeline.Pipeline.

        Returns
        -------
        self : object
            Returns the instance itself.
        )ÚcsrÚcscz	allow-nan)Úaccept_sparseÚdtypeÚensure_all_finiteÚtoarrayr   )Úaxisz4No feature in X meets the variance threshold {0:.5f}r   z (X contains only one sample))r   ÚnpÚfloat64Úhasattrr   Ú
variances_r   r	   ÚnanvarÚptpÚarrayÚnanminÚallÚisfiniteÚshapeÚ
ValueErrorÚformat)	r   ÚXÚyÚ_ÚminsÚmaxesÚpeak_to_peaksÚcompare_arrÚmsgs	            r   ÚfitzVarianceThreshold.fitQ   s4  € ô& ØØØ(Ü—*‘*Ø)ô
ˆô �1�iÔ Ü!3°A¸AÔ!>ÑˆAˆtŒØ�~‰~ Ò"Ü*¨1°1Ô5‘��eØ %¨¡‘ä Ÿi™i¨°Ô2ˆDŒOØ�~‰~ Ò"Ü "§¡ q¨qÔ 1�à�>‰>˜QÒô Ÿ(™( D§O¡O°]Ð#CÓDˆKÜ Ÿi™i¨¸!Ô<ˆDŒOä�6‰6”2—;‘;˜tŸ™Ó/Ð/°4·?±?ÀdÇnÁnÑ3TÑUÔVØHˆCØ�w‰w�q‰z˜QŠØÐ6Ñ6�Ü˜SŸZ™Z¨¯©Ó7Ó8Ð8àˆr   c                 óJ   — t        | «       | j                  | j                  kD  S r   )r
   r&   r   )r   s    r   Ú_get_support_maskz#VarianceThreshold._get_support_mask„   s   € Ü˜Ôà�‰ §¡Ñ/Ð/r   c                 óh   •— t         ‰| �  «       }d|j                  _        d|j                  _        |S )NT)ÚsuperÚ__sklearn_tags__Ú
input_tagsÚ	allow_nanÚsparse)r   ÚtagsÚ	__class__s     €r   r=   z"VarianceThreshold.__sklearn_tags__‰   s-   ø€ Ü‰wÑ'Ó)ˆØ$(ˆ�‰Ô!Ø!%ˆ�‰ÔØˆr   )g        r   )Ú__name__Ú
__module__Ú__qualname__Ú__doc__r   r   r   ÚdictÚ__annotations__r   r   r8   r:   r=   Ú__classcell__)rB   s   @r   r   r      s[   ø… ñ8ðv 	‘h˜t Q¨°VÔ<Ð=ð$Ð˜Dó ó#ñ °Ô5ò0ó 6ð0òd0÷
ð r   r   )Únumbersr   Únumpyr#   Úbaser   r   Úutils._param_validationr   Úutils.sparsefuncsr   r	   Úutils.validationr
   r   Ú_baser   r   © r   r   ú<module>rR      s,   ðõ ã ç .Ý .ß @ß =Ý  ô~˜ }õ ~r   