U
    bl                     @  s   d dl mZ d dlZd dlmZ d dlmZ d dlm	Z	m
Z
mZmZmZmZmZmZ d dlmZmZ d dlZd dlmZ dd	d
ZdS )    )annotationsN)lib)maybe_downcast_numeric)ensure_objectis_datetime_or_timedelta_dtype
is_decimalis_integer_dtype	is_numberis_numeric_dtype	is_scalarneeds_i8_conversion)ABCIndex	ABCSeries)NumericArrayraisec              	   C  s  |dkrt d|dkr t dd}d}d}t| trBd}| j}nt| trjd}t| jrb| j}q| j}nvt| tt	frt
j| dd}nXt| rt| rt| S t| r| S d}t
j| gdd}nt| d	d
d
krtdn| }d}t|tr|j}|j|  }t|dd}t|rnjt|r2|t
j}nRt|}|dk}	ztj|t |	d\}}
W n& t tfk
r   |dkr~ Y nX |dk	rht|jrhd}|dkrt
jd }nh|dkrt|rt
|dkrt
jd }n8|dkrt
jd }t
t
j j!}|"|}||d }|dk	rh|D ]<}t
|}|j#|jj#kr*t$||}|j|kr* qhq*|dk	rt
j%|j&|jd}||| < ddl'm(}m)} t*|jr|n|}|||+ }|r| j,|| j"| j-dS |rt.j/|| j-dS |r|d S |S dS )a  
    Convert argument to a numeric type.

    The default return dtype is `float64` or `int64`
    depending on the data supplied. Use the `downcast` parameter
    to obtain other dtypes.

    Please note that precision loss may occur if really large numbers
    are passed in. Due to the internal limitations of `ndarray`, if
    numbers smaller than `-9223372036854775808` (np.iinfo(np.int64).min)
    or larger than `18446744073709551615` (np.iinfo(np.uint64).max) are
    passed in, it is very likely they will be converted to float so that
    they can stored in an `ndarray`. These warnings apply similarly to
    `Series` since it internally leverages `ndarray`.

    Parameters
    ----------
    arg : scalar, list, tuple, 1-d array, or Series
        Argument to be converted.
    errors : {'ignore', 'raise', 'coerce'}, default 'raise'
        - If 'raise', then invalid parsing will raise an exception.
        - If 'coerce', then invalid parsing will be set as NaN.
        - If 'ignore', then invalid parsing will return the input.
    downcast : str, default None
        Can be 'integer', 'signed', 'unsigned', or 'float'.
        If not None, and if the data has been successfully cast to a
        numerical dtype (or if the data was numeric to begin with),
        downcast that resulting data to the smallest numerical dtype
        possible according to the following rules:

        - 'integer' or 'signed': smallest signed int dtype (min.: np.int8)
        - 'unsigned': smallest unsigned int dtype (min.: np.uint8)
        - 'float': smallest float dtype (min.: np.float32)

        As this behaviour is separate from the core conversion to
        numeric values, any errors raised during the downcasting
        will be surfaced regardless of the value of the 'errors' input.

        In addition, downcasting will only occur if the size
        of the resulting data's dtype is strictly larger than
        the dtype it is to be cast to, so if none of the dtypes
        checked satisfy that specification, no downcasting will be
        performed on the data.

    Returns
    -------
    ret
        Numeric if parsing succeeded.
        Return type depends on input.  Series if Series, otherwise ndarray.

    See Also
    --------
    DataFrame.astype : Cast argument to a specified dtype.
    to_datetime : Convert argument to datetime.
    to_timedelta : Convert argument to timedelta.
    numpy.ndarray.astype : Cast a numpy array to a specified type.
    DataFrame.convert_dtypes : Convert dtypes.

    Examples
    --------
    Take separate series and convert to numeric, coercing when told to

    >>> s = pd.Series(['1.0', '2', -3])
    >>> pd.to_numeric(s)
    0    1.0
    1    2.0
    2   -3.0
    dtype: float64
    >>> pd.to_numeric(s, downcast='float')
    0    1.0
    1    2.0
    2   -3.0
    dtype: float32
    >>> pd.to_numeric(s, downcast='signed')
    0    1
    1    2
    2   -3
    dtype: int8
    >>> s = pd.Series(['apple', '1.0', '2', -3])
    >>> pd.to_numeric(s, errors='ignore')
    0    apple
    1      1.0
    2        2
    3       -3
    dtype: object
    >>> pd.to_numeric(s, errors='coerce')
    0    NaN
    1    1.0
    2    2.0
    3   -3.0
    dtype: float64

    Downcasting of nullable integer and floating dtypes is supported:

    >>> s = pd.Series([1, 2, 3], dtype="Int64")
    >>> pd.to_numeric(s, downcast="integer")
    0    1
    1    2
    2    3
    dtype: Int8
    >>> s = pd.Series([1.0, 2.1, 3.0], dtype="Float64")
    >>> pd.to_numeric(s, downcast="float")
    0    1.0
    1    2.1
    2    3.0
    dtype: Float32
    )Nintegersignedunsignedfloatz#invalid downcasting method provided)ignorer   Zcoercezinvalid error value specifiedFTO)dtypendim   z/arg must be a list, tuple, 1-d array, or SeriesNr   )r   r   )coerce_numericr   )r   r   ZIntegerr   r   ZUnsignedIntegerr   ZFloat)FloatingArrayIntegerArray)indexname)r   )0
ValueError
isinstancer   valuesr   r   r   Zasi8listtuplenparrayr   r   r   r	   getattr	TypeErrorr   Z_mask_datar
   r   viewZint64r   r   Zmaybe_convert_numericset	typecodeslenminZfloat32charr   itemsizer   zerosshapeZpandas.core.arraysr   r   r   copyZ_constructorr   pdZIndex)argerrorsZdowncastZ	is_seriesZis_indexZ
is_scalarsr!   maskZvalues_dtyper   _r+   Zfloat_32_charZfloat_32_indtypecoder   datar   r   klass r;   =/tmp/pip-unpacked-wheel-ck39h295/pandas/core/tools/numeric.py
to_numeric   s    l





  

$








r=   )r   N)
__future__r   Znumpyr$   Zpandas._libsr   Zpandas.core.dtypes.castr   Zpandas.core.dtypes.commonr   r   r   r   r	   r
   r   r   Zpandas.core.dtypes.genericr   r   Zpandasr3   Zpandas.core.arrays.numericr   r=   r;   r;   r;   r<   <module>   s   (
