Nineya
Home
Blog
Pandas ENH: Series Creation Does Not Intelligently Handle datetime.date
2025-02-10 00:15:31
4046
For example:In [77]: pd.Series([datetime.datetime(2012, 1, 1)]).dtypeOut[77]: dtype('<M8[ns]')works as expected.Howev...
Pandas ER: better error messages on Panel construction with non-nested dict
2025-02-10 00:15:26
377
see related: https://github.com/pydata/pandas/pull/4184, #4324In [2]: pd.Panel(dict(A = np.nan))AttributeError: 'float' ...
Pandas groupby and np.dot with MultiIndex
2025-02-10 00:15:22
1745
Should the following work? On revision 07403ca.weights = np.random.randn(4,4)panel = pd.util.testing.makePanel(nper=2).t...
Pandas Docs behaviour on bad urls
2025-02-10 00:15:17
805
When hitting a bad url it shows content from main page but loses css.e.g. http://pandas.pydata.org/pandas-docs/dev/foo.h...
Pandas ENH: change Index unique to return an Index/MultiIndex (rather than ndarray)
2025-02-10 00:15:13
651
Change unique to return an Index/MultiIndex as needed (rather than an ndarray)In [81]: tuples = [(0, 100, 1000),(0, 100,...
Pandas BUG: panel construction with duplicate index raises
2025-02-10 00:15:08
1103
It is not clear if this should raise on construction or nothttp://stackoverflow.com/questions/17338148/pandas-duplicate-...
Pandas BUG: wraparound of int64
2025-02-10 00:15:03
399
This is dealing with a wrap-around on int64occurs only on some platforms (macosx) and only on certain installspandas has...
Pandas Breakpoint analysis feature in Pandas
2025-02-10 00:14:57
1217
Hi,as far as I know, pandas does not support yet the analysis of time series homogeneity and the detection of breakpoint...
Pandas Feature Request: Pandas Tip of the Day
2025-02-10 00:14:52
266
I feel having such a feature would help people get better at Pandas, learn some advanced skills and better ways to do th...
Pandas Multiindexing slicing of dates
2025-02-10 00:14:48
5463
Should I be able to slice like follows:In [1]: dfOut[1]: report_date item_id views category0 2013-06-01 00:00...
Pandas int handling by ScaleGradient
2025-02-10 00:14:43
404
If the data series passed to ScaleGradient in plot is integer-valued, it does not generate a correct color gradient. Her...
Pandas .loc[] assignment gives broadcast error
2025-02-10 00:14:34
20815
In [8]: wp = Panel(randn(2, 5, 4), items=['Item1', 'Item2'], major_axis=date_range('1/1/2000', periods=5), minor_axis=['...
Pandas Can't run nosetest
2025-02-10 00:14:28
80978
Trying to contribute but get the following error when trying to run nosetests with "nosetests pandas". I get the same er...
Pandas DOC: provide links to API documentation where possible
2025-02-10 00:14:23
1632
Probably good as a first PR. I'm not saying we need links to DataFrame every time it's mentioned, but the io docs could ...
Pandas drop from datetimeindex requires a timestamp
2025-02-10 00:14:18
1982
See this SO question:Apparently (for a DataFrame with DatetimeIndex) drop requires a Timestamp object (this is different...
Pandas ENH: Add panel implementation of idxmin/max
2025-02-10 00:14:14
962
Is this something that is worth pursuing? Personally, I don't use Panel really ever since DataFrame is basically N-dimen...
Pandas Panel.fillna() loses index names
2025-02-10 00:14:11
1460
Panel.fillna() should accept (axis= [0, 1, 2] or ['items', 'major_axis', 'minor_axis'])as an argument.Right now it essen...
Pandas Inconsistency between read_csv(... parse_dates) and read_csv followed by astype('datetime')
2025-02-10 00:14:07
3667
Write time-zones out in csv fileDatetimes are written to csv in readable UTC. Using pd.read_csv('file.csv', parse_dates=...
Pandas Support for multidimensional dtypes
2025-02-10 00:14:02
18050
With 0.11 out, Pandas supports more dtypes than before, which is very useful to us science folks. However, some data is ...
Pandas TODO: more pprint imporvements
2025-02-10 00:13:55
3960
TODO[ ] dicts with many keys should be summarized (Update: I can no longer remember the use case for dicts printed via ...
上一页
下一页
1
…
93
94
95
96
97
…
2246
.