Nineya
Home
Blog
Pandas DatetimeIndex.map() preserves freq only for some functions
2025-02-09 23:53:27
1424
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
2025-02-09 23:53:22
474
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
2025-02-09 23:53:17
510
Maybe it makes sense to improve the documentation on the distinction of PeriodIndex vs. DatetimeIndex, especially regard...
Pandas PERF: indexing on a CategoricalIndex
2025-02-09 23:53:11
1523
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)
2025-02-09 23:53:05
1897
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
2025-02-09 23:53:00
2823
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
2025-02-09 23:52:54
1900
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
2025-02-09 23:52:49
259
http://stackoverflow.com/questions/20888226/pandas-hdfstore-tables-doesnt-accept-multiindex-columns/20888732#20888732Com...
Pandas ENH/API: DataFrame.unstack() support for dropna and sequentially
2025-02-09 23:52:43
389
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
2025-02-09 23:52:37
552
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
2025-02-09 23:52:32
427
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)
2025-02-09 23:52:27
2001
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
2025-02-09 23:52:13
1323
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
2025-02-09 23:52:08
134
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
2025-02-09 23:52:04
8963
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
2025-02-09 23:51:49
1256
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
2025-02-09 23:51:45
3347
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
2025-02-09 23:51:40
3234
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
2025-02-09 23:51:36
4721
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
2025-02-09 23:51:31
1065
Pandas version checks[X] I have checked that this issue has not already been reported.[X] I have confirmed this bug exis...
上一页
下一页
1
…
105
106
107
108
109
…
2246
.