Nineya
Home
Blog
Pandas TST: add numexpr fixture
2025-02-08 22:09:47
884
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
2025-02-08 22:09:44
2209
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
2025-02-08 22:09:40
3371
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
2025-02-08 22:09:35
3659
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
2025-02-08 22:09:30
1628
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
2025-02-08 22:09:26
2577
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
2025-02-08 22:09:21
2919
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
2025-02-08 22:09:16
7051
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
2025-02-08 22:09:10
1493
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
2025-02-08 22:09:05
6422
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]?
2025-02-08 22:09:00
1452
ATM Series[categorical].values gives a Categorical and Series[sparse].values gives a SparseArray. Interval, Period, and...
Pandas CLEAN dubious docstring
2025-02-08 22:08:56
1696
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.
2025-02-08 22:08:51
7262
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
2025-02-08 22:08:47
4406
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
2025-02-08 22:08:41
514
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
2025-02-08 22:08:36
4144
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
2025-02-08 22:08:31
3407
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
2025-02-08 22:08:00
1699
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
2025-02-08 22:07:55
3512
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
2025-02-08 22:07:51
2982
When we have exact same columns in source and target dataframes and distinct number of rows then we are seeing below exc...
上一页
下一页
1
…
161
162
163
164
165
…
2246
.