Nineya
Home
Blog
Pandas ENH: Add a pep8-radius script
2025-02-10 00:19:08
8152
We've been stuck on how to handle PEP8 cleanups for a while.On the one hand PEP8 storms break PRs and git blame, OTOHthe...
Pandas Drop with boolean raises a ValueError
2025-02-10 00:19:02
2058
Shouldn't this work?>>> pd.version.version'0.13.0-472-g9109812'>>> df = pd.DataFrame(np.random.random(...
Pandas ewma does not work on Panel
2025-02-10 00:18:56
2586
I would expect to be able to perform an ewma over each minor axis within each major axis:In [52]:wp = pd.Panel(np.random...
Pandas Assignment by Attribute has Odd Behavior
2025-02-10 00:18:52
1354
When assigning to a column in a DataFrame, If I assign an existing column, the assignment works:In [36]: df = pd.DataFra...
Pandas PERF: update vbench historical displays
2025-02-10 00:18:47
968
http://pandas.pydata.org/pandas-docs/vbench/ideally have this run say once a weekneed a few more categories (to cover th...
Pandas Inconsistent Behavior of min on Timestamps w/ and w/o timezones
2025-02-10 00:18:42
2016
related #4147Observe w/o tz:In [46]: pd.Series([pd.NaT, pd.Timestamp("2013-1-1")]).min()Out[46]: Timestamp('20...
Pandas DOC: document pd.match in main docs section
2025-02-10 00:18:37
977
pd.match is a lurking function.....would be nice to add a short blurb to the main docs, maybe in factorize section https...
Pandas datetools.parse interface
2025-02-10 00:18:31
7226
[ ] document in docstring / cookbook / timeseries.rst usage of combing integer columns into YYYYMMDD and parsing to date...
Pandas Series.hist() fails for String Series
2025-02-10 00:18:25
7885
Not sure if that's a pandas or a mathplotlib bug.import pandasdf = pandas.DataFrame({"year":[1,2,3,4],"na...
Pandas Automate release notes
2025-02-10 00:18:19
6355
Bit of a PITA to repeat the information in every PR in a release note for that PR as well. The automation tools in IPyth...
Pandas Enhance: Time series for different types of graphs using plot fuction
2025-02-10 00:18:14
1117
Duplicate of #1918Basically the problem is if you want to do a bar plot with time seriesdf.plot(kind='bar')it will creat...
Pandas BUG: Panel, MultiIndex, _setitem_with_indexer
2025-02-10 00:18:08
814
This creates an IndexError. idx = MultiIndex.from_tuples([(1, 'one'), (1, 'two'), (2, 'one'), ...
Pandas BUGI: groupby issue with user function with mutation, and duplicate indices
2025-02-10 00:18:03
1131
Only happens when the user function mutates the inputOriginally from: http://stackoverflow.com/questions/20691168/pandas...
Pandas New orientation for to_json method
2025-02-10 00:17:58
3051
start = datetime.datetime(2013, 1, 1)end = datetime.datetime(2013, 01, 27)f=web.get_data_yahoo('AAPL',start, end)f['Adj ...
Pandas df.filter(like='col_name') 2.975X slower than basic column list comprehension
2025-02-10 00:17:53
2378
I have found that using the filter method to select columns that match a string pattern is ~3x slower than basic list co...
Pandas DataFrame inspector GUI, df.inspect()
2025-02-10 00:17:48
2175
5013 is in the sandbox, the functionality would be useful as df.inspect(),popping up a gui grid view of the frame.In the...
Pandas HTML repr for empty dataframes is ugly
2025-02-10 00:17:34
1297
see https://github.com/pydata/pandas/pull/5550#issuecomment-28931094related #6062Comment From: TomAugspurgerLet's keep a...
Pandas ENH: make contiguous groupby easier
2025-02-10 00:17:29
3311
itertools.groupby groups things contiguously-- great for run length encoding, not so great for partitioning. This neces...
Pandas netCDF IO suport
2025-02-10 00:17:22
5358
I'd like to propose read_netcdf (netCDF (Network Common Data Format)) a new Pandas I/O api feature with a similar top le...
Pandas Simple way of adding/removing column to DataFrame Not in Place
2025-02-10 00:17:16
3481
See SO question: http://stackoverflow.com/questions/19802708/add-column-to-pandas-dataframe-not-in-placeI would suggest ...
上一页
下一页
1
…
91
92
93
94
95
…
2246
.