Pandas ENH: Series Creation Does Not Intelligently Handle datetime.date

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

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

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

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)

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

It is not clear if this should raise on construction or nothttp://stackoverflow.com/questions/17338148/pandas-duplicate-...

Pandas BUG: wraparound of int64

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

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

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

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

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

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

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

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

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

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

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')

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

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

TODO[ ] dicts with many keys should be summarized (Update: I can no longer remember the use case for dicts printed via ...
上一页 下一页
.