Nineya
Home
Blog
Pandas STYLE remove absolufy-imports, use ruff
2025-02-08 22:43:53
662
Issue is:removehttps://github.com/pandas-dev/pandas/blob/db8af0e767cb66a7b747984feec380822012cce9/.pre-commit-config.yam...
Pandas DIS: Keywords for multi-threading capabilities
2025-02-08 22:43:35
6099
With the addition of the new pyarrow engine, we now have the option to use multiple threads to read a CSV file. (This is...
Pandas Unexpected behavior in cut() with nullable Int64 dtype
2025-02-08 22:42:54
3547
Code Sampleimport pandas as pdseries = pd.Series([0, 1, 2, 3, 4, pd.np.nan, 6, 7], dtype='Int64')breaks = [0, 2, 4, 6, 8...
Pandas STYLE: Fix errors in doctests
2025-02-08 22:42:49
2337
xref #22900We'd like to validate that the examples in our documentation (docstrings) follow PEP-8. For that, we need to ...
Pandas ~~oindex is always None, if statement is redundant~~ CLOSED
2025-02-08 22:42:44
163
https://github.com/pandas-dev/pandas/blob/2e218d10984e9919f0296931d92ea851c6a6faf5/pandas/core/internals/construction.py...
Pandas DOC: Supported Float dypes not documented
2025-02-08 22:42:39
3557
Pandas version checks[X] I have checked that the issue still exists on the latest versions of the docs on main hereLocat...
Pandas BUG: series.astype(str) vs Index.astype(str) inconsistency
2025-02-08 22:42:35
1883
ser = pd.Series([b'foo'], dtype=object)idx = pd.Index(ser)In [3]: ser.astype(str)[0]Out[3]: "b'foo'"In [4]: id...
Pandas BUG: Some Index reductions fail with string[pyarrow]
2025-02-08 22:42:30
4209
Pandas version checks[X] I have checked that this issue has not already been reported.[X] I have confirmed this bug exis...
Pandas BUG: read_csv raises on bad line when should skip or warn
2025-02-08 22:42:26
1864
Pandas version checks[X] I have checked that this issue has not already been reported.[X] I have confirmed this bug exis...
Pandas WARN unnecessary "can't infer datetime format" for out-of-bounds datetimes
2025-02-08 22:42:22
1348
pd.to_datetime(['9000-01-01'])shows<ipython-input-1-1af851f16643>:1: UserWarning: Could not infer format, so each ...
Pandas BUG: pd.eval not working when using str.contains: TypeError: unhashable type: 'Series'
2025-02-08 22:42:16
4956
Pandas version checks[X] I have checked that this issue has not already been reported.[X] I have confirmed this bug exis...
Pandas PERF: regression in getattr for IntervalIndex
2025-02-08 22:42:09
4927
Master:In [14]: idx = pd.interval_range(0, 1000, 1000) In [15]: %timeit getattr(idx, '_ndarray_values', idx)1.29 ms ± 30...
Pandas BUG: ChainedAssignmentError for CoW not working when setitem is called from cython
2025-02-08 22:42:04
4423
https://github.com/pandas-dev/pandas/pull/49467 added the feature to detect "chained assignment" and raise an error for ...
Pandas STYLE: add check to keep black version in sync between .pre-commit-config.yaml and environment.yaml
2025-02-08 22:42:00
2058
Might be possible to adapthttps://github.com/pandas-dev/pandas/blob/3cb70a5f0d1dc386f7806fca75abff6f098b1539/scripts/syn...
Pandas BUG: pandas halted in a busy loop when assigning new column with non-unique index
2025-02-08 22:41:54
3703
Pandas version checks[X] I have checked that this issue has not already been reported.[X] I have confirmed this bug exis...
Pandas QST: Categorical NaN moving to strings. Unexpected behavior?
2025-02-08 22:41:50
4762
Research[X] I have searched the [pandas] tag on StackOverflow for similar questions.[X] I have asked my usage related qu...
Pandas API allow for format='mixed' in to_datetime
2025-02-08 22:41:45
1869
This was brought up in the community call.https://github.com/pandas-dev/pandas/pull/50939 adds support for mixed ISO8601...
Pandas Datetime parsing (PDEP-4): allow mixture of ISO formatted strings?
2025-02-08 22:41:40
15793
In pandas < 2, parsing datetime strings that are all strictly ISO formatted strings (so there is no ambiguity) but ha...
Pandas BUG:
2025-02-08 22:41:34
2684
Pandas version checks[X] I have checked that this issue has not already been reported.[X] I have confirmed this bug exis...
Pandas ENH: keep='random' option for .duplicated and .drop_duplicates
2025-02-08 22:41:29
3443
Enhancement descriptionThe present implementation of df.duplicated() (and hence df.drop_duplicates()) only has two optio...
上一页
下一页
1
…
144
145
146
147
148
…
2246
.