Pandas DatetimeIndex.map() preserves freq only for some functions

Code Sample, a copy-pastable example if possibleIn [2]: idx = pd.date_range(start='2010-08-08', end='2010-08-15')In [3]:...

Pandas Nan in groupby gives a wrong behavior for cumsum() of ints contrary to floats

Example :df = pd.DataFrame([[np.nan,0],[0,1]])df.groupby(0)[1].cumsum()out:0 -11 1which is incorrectdf = pd.DataFrame([[...

Pandas DOC: add use cases / when to use PeriodIndex vs. DatetimeIndex

Maybe it makes sense to improve the documentation on the distinction of PeriodIndex vs. DatetimeIndex, especially regard...

Pandas PERF: indexing on a CategoricalIndex

see SO hereThese are naturally duplicated indexes. These are handled in the underyling code using a pretty inefficient m...

Pandas Implement a human readable summary function like R (less structured than describe)

In R, the summary(data) function provides counts for categorical data of the most frequent values. For datetime and nume...

Pandas Specifying data_columns for non-selector tables with append_to_multiple

HDFStore.append_to_multiple only lets your specify data_columns for the "selector" table; all other tables you make with...

Pandas ENH/BUG: support multi-index slicing assignment expansions

From SO: http://stackoverflow.com/questions/24247255/idiomatic-multiindex-column-assignment-in-pandas/24247513#24247513h...

Pandas ENH: support a simultaneous mutli-index on both index AND columns in a Frame with HDFStore

http://stackoverflow.com/questions/20888226/pandas-hdfstore-tables-doesnt-accept-multiindex-columns/20888732#20888732Com...

Pandas ENH/API: DataFrame.unstack() support for dropna and sequentially

Add dropna and sequentially parameters to DataFrame.unstack(), to match DataFrame.stack(). For backwards compatibility, ...

Pandas PERF/API/BUG: index memory not releasing when manipulated by numpy functions

http://stackoverflow.com/questions/27074469/memory-leak-in-python-pandas-reshuffling-indexIn [1]: df = DataFrame(np.rand...

Pandas API: allow multiple indices in Index.insert

Derived from #7299. numpy.insert can accept multiple elements / indices as of v1.8.http://docs.scipy.org/doc/numpy/refer...

Pandas ENH: Improve typing in SQL Insertion method (improve docs about how to do this)

Feature Type[ ] Adding new functionality to pandas[X] Changing existing functionality in pandas[ ] Removing existing fun...

Pandas DOC: describe any expected ordering of value counts when sort=False

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

Pandas TYP: Make typing consistent for closed argument in Interval associated methods/classes

Initially, this was fixed in https://github.com/pandas-dev/pandas/pull/47646 but had to be reverted to rename inclusive ...

Pandas DataFrame.from_dict multilevel dicts with datetime.date objects as keys sets the values as NaN in the DataFrame

Code Sample, from Jupyter notebookimport pandas as pdimport datetimeexample_multilevel_dict = { (0, datetime.date(2018,...

Pandas apply with values return wrong output without convert to list

from SOdf = pd.DataFrame({'a':[1,2], 'b':[2,3]})print (df) a b0 1 21 2 3And output is wrong:print (df.apply(lambd...

Pandas BUG: Partial multiindex columns selection breaks categorical dtypes

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

Pandas BUG: pd.api.types.is_scalar reports True for Troch tensors

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

Pandas BUG: pd.date_range not factoring in nanoseconds in freq

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

Pandas BUG: Module pandas._libs.json has incorrect __name__ attribute

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