Nineya
Home
Blog
Pandas DEPS: make a package for the ci/code_checks.sh
2025-02-08 22:39:15
3301
I think it might be nice to put the ci/code_checks.sh into its own repo / library where others could use these.I think w...
Pandas Annotate API-exposed Items from pandas.core.api
2025-02-08 22:39:10
4003
We currently expose all of the following items from pandas.core.api via the API:from pandas.core.api import ( # dtype...
Pandas DOC/STYLE: Fix "F821 undefined name 'pd'" errors
2025-02-08 22:39:06
5850
It'd be great to start linting the doctests (validate the docstring examples for pep8 issues).To start with core/generic...
Pandas PERF: cythonize vectorized string routines
2025-02-08 22:38:59
1619
Not a night and day improvement since all we're doing is removing some python overhead, but there does seem to be 2x+ pe...
Pandas API: groupby.transform()
2025-02-08 22:38:54
440
In [4]: df = pd.DataFrame({'A':[1,1,2,2],'B':[1,2,3,4]})In [5]: df.groupby('A').transform('max')Out[5]: B0 21 22 4...
Pandas ENH: Series.name should return a string or None
2025-02-08 22:38:49
2663
Is your feature request related to a problem?Currently, the constructor for Series has the name argument as a str or Non...
Pandas Index dtype is changed to object after left join
2025-02-08 22:38:44
6016
Code Sampleimport pandas as pdimport numpy as npleft = pd.DataFrame( columns=['A'], index=pd.Index([], name='id',...
Pandas DEPR: reindex/rename_axis signature make rewrite_axis_style_signature unnecessary
2025-02-08 22:38:39
318
AFAICT rewrite_axis_style_signature exists to disambiguate positional/keyword arguments. Can we deprecate some non-keyw...
Pandas Timedelta +/- timedelta64[no-unit] assumes ns
2025-02-08 22:38:36
933
A test failure that only showed up on appveyor: https://ci.appveyor.com/project/pandas-dev/pandas/build/1.0.9563/job/b47...
Pandas ENH: Add global option io.nullable_type="pandas"|"pyarrow" to control IO reader use_nullable_dtype
2025-02-08 22:38:31
955
xref: https://github.com/pandas-dev/pandas/issues/29752, https://github.com/pandas-dev/pandas/issues/36712From the above...
Pandas API: should creating a Series from a Series return a shallow copy? (share data, not attributes)
2025-02-08 22:38:27
1811
Currently, if you create a Series from another Series, you get a new object, but because it shares the manager, it also ...
Pandas CI: pyarrow 11 broke ci
2025-02-08 22:38:21
200
The new pyarrow fails 4 tests. We already pinned to < 11 to keep ci green.https://app.circleci.com/pipelines/github/p...
Pandas DOC: Remove reference to sql fallback support for mysql connection objects
2025-02-08 22:38:17
1024
Pandas version checks[X] I have checked that the issue still exists on the latest versions of the docs on main hereLocat...
Pandas BUG: replace with inplace=True does not respect CoW
2025-02-08 22:38:12
1026
Pandas version checks[X] I have checked that this issue has not already been reported.[X] I have confirmed this bug exis...
Pandas API revert inference of resolution when parsing string in Timestamp?
2025-02-08 22:38:07
3708
Should #49737 be reverted?This was brought in the dev call yesterday. It's great that non-nanosecond support is coming a...
Pandas Vectorized "crossing" computation
2025-02-08 22:38:03
2225
http://stackoverflow.com/questions/10475488/calculating-crossing-intercept-points-of-a-series-or-dataframedef cross(seri...
Pandas "cumplyr"-like functionality
2025-02-08 22:37:58
830
cc @johnmyleswhitehttp://www.johnmyleswhite.com/notebook/2012/05/03/cumplyr-extending-the-plyr-package-to-handle-cross-d...
Pandas ENH: Add engine keyword to read_json to enable reading from pyarrow
2025-02-08 22:37:52
3477
pyarrow has a read_json function that could be used as an alternative parser for pd.read_json https://arrow.apache.org/d...
Pandas BUG: failed to setup dev environment (pip)
2025-02-08 22:37:46
88600
[x] I have checked that this issue has not already been reported.[ ] I have confirmed this bug exists on the latest vers...
Pandas tslibs TODO list
2025-02-08 22:37:40
6934
Misc:- [x] Timestamp.replace should support fold kwarg. ATM the kwarg exists but is ignored.- [x] Timestamp constructor...
上一页
下一页
1
…
146
147
148
149
150
…
2246
.