Pandas TST: add numexpr fixture

Currently, we have autouse fixtures in tests/series/test_arithmetic.py, tests/frame/test_arithmetic.py & tests/arith...

Pandas BUG: inconsistent handling of exact=False case in to_datetime parsing

From https://github.com/pandas-dev/pandas/issues/50411#issuecomment-1363972775The documentation of to_datetime says:exac...

Pandas BUG: DataFrame.copy(deep=True) doesn't prevent original DataFrame from being modified

Pandas version checks[X] I have checked that this issue has not already been reported.[X] I have confirmed this bug exis...

Pandas BUG: Groupby then sum boolean column gives too large a sum

Pandas version checks[X] I have checked that this issue has not already been reported.[X] I have confirmed this bug exis...

Pandas DOC: IO tools OpenDocument spreadsheets har wrong information on missing implementation for writing ODF-files

Pandas version checks[X] I have checked that the issue still exists on the latest versions of the docs on main hereLocat...

Pandas pandas.Series.isin() is slow on large sets due to conversion of set to list

Code Sampleimport pandas as pdimport timesquares = set(a**2 for a in range(100000000))series = pd.Series(range(100))star...

Pandas BUG: 'now' and 'today' only parse in to_datetime with ISO8601 formats

Pandas version checks[X] I have checked that this issue has not already been reported.[X] I have confirmed this bug exis...

Pandas PERF: to_datime fastpath for %Y%m%d is slower

We have a check for whether format == '%Y%m%d', but this actually seems to be slower:In [86]: s = pd.Series(['20120101']...

Pandas BUG: combination of out of bound date and nan with errors='ignore' gives nonsense data

In [46]: pd.__version__ Out[46]: '0.25.0.dev0+593.g307265e28'In [47]: pd.to_datetime(['15010101', '20150101', np....

Pandas to_datetime function not working with %Y.%m.%d %H format

Code Sample, a copy-pastable example if possibleimport pandas as pdimport datetime as dtprint(dt.datetime.strptime('2012...

Pandas API: series.values EA or ndarray[object]?

ATM Series[categorical].values gives a Categorical and Series[sparse].values gives a SparseArray. Interval, Period, and...

Pandas CLEAN dubious docstring

This looks odd - the docstring is broken in two, and there's an assignment in the middle?https://github.com/pandas-dev/p...

Pandas df.duplicated and drop_duplicates raise TypeError with unhashable values.

IN:import pandas as pddf = pd.DataFrame([[{'a', 'b'}], [{'b','c'}], [{'b', 'a'}]])dfOUT: 00 {a, b}1 {c, b}2 {a,...

Pandas QST: Pandas Crosstab dos not support Float (with capital F) number formats

Research[X] I have searched the [pandas] tag on StackOverflow for similar questions.[X] I have asked my usage related qu...

Pandas BUG: Grouper specified by key not regarded as in-axis

Currently using as_index=False only includes in-axis groupers (see #49519). Defining a Grouper by the key argument is in...

Pandas ERR: "day out of range" doesn't show position of error

Pandas version checks[X] I have checked that this issue has not already been reported.[X] I have confirmed this bug exis...

Pandas BUG: Groupby with rolling on MultiIndex duplicates index levels

Pandas version checks[X] I have checked that this issue has not already been reported.[X] I have confirmed this bug exis...

Pandas ERR non-ISO formats don't show position of error

Trimming the tracebacks to make it clearer:In [19]: to_datetime(['2020-01-01', 'foo'], format='%Y-%m-%d') # ISO, shows ...

Pandas BUG: pd.Series.isin returns inconsistent results for a passed iterable depending on the dtype

Pandas version checks[X] I have checked that this issue has not already been reported.[X] I have confirmed this bug exis...

Pandas Incorrect identically-labeled DataFrame objects Exception comes with df.compare method

When we have exact same columns in source and target dataframes and distinct number of rows then we are seeing below exc...
上一页 下一页
.