Pandas pandas.test() FAILS after fresh anaconda install

Hello,Please see here http://stackoverflow.com/questions/36409183/pandas-test-fails-after-fresh-anaconda-install?noredir...

Pandas Strange and possibly buggy behaviour when using series.dt with series.apply(strftime)

It seems like Series.dt timezone properties to not interact well with series.apply(lambda x : x.strftime("..")) leading ...

Pandas Using rolling method call on a pandas.core.groupby.DataFrameGroupBy object results in an AttributeError, previous rolling methods are deprecated

Code Sampledf.groupby(level=['first_name','last_name']).rolling(window=5)-----------------------------------------------...

Pandas Segmentation fault

When doing some data analysis with pandas, the python shell breaks and I get "Segmentation fault (core dumped)".A little...

Pandas Exception: "Function does not reduce" for pivot_table when aggfunc=lambda x: x

I have been using a "hack" for sometime that has broken in 0.18.0. I have a use case where the aggfunc should return an...

Pandas Rounding errors when parsing timedeltas

Found this while working on #12136.Rounding errors occur for timedeltas initialized using fractional microsecond values:...

Pandas BUG: Crosstab/Pivot_table columns.names change when toggling dropna

This is not a real 'bug' maybe? But it can be annoying.xref #12614. Independent of issue #12642.Code Samplea = np.array(...

Pandas Feature request: read_csv/read_table/read_fwf - read multiple files with the same structure, applying the same parameters (skiprows, skipfooter, nrows)

Hello,I think it would make sense to make read_csv(), read_table(), read_fwf() able to read multiple files with the sam...

Pandas group_keys=False stopped working with groupby().resample() in v0.18.0

Updating from 0.17.1 to 0.18.0 breaks group_keys=False.>>> data = pd.DataFrame([1, 2, 3, 4], index=pd.date_rang...

Pandas BUG: Unexpected pd.to_datetime result

Code Sample, a copy-pastable example if possiblepd.to_datetime(["31/12/2014", "10/03/2011"])Out[37]:...

Pandas Value assignment by iloc overwrites multiple concat columns

Suppose we wish to concatenate two dataframes with the same name. Because the columns share the same name, loc will not ...

Pandas pd.to_datetime/pd.DatetimeIndex unexpected behavior

I don't know if this is a bug or not (I guess not), but I think this behavior might be very confusing to many users who ...

Pandas Merge resets column types - category is reset

Code Sample, a copy-pastable example if possibleimport numpy as npimport pandas as pd# Generate some random dataframes w...

Pandas read_csv dtype 'object' doesn't work for index column

I'm working on a little pandas lesson. The CSV has a column with leading '0' which should be treated as text. When I try...

Pandas Precision support for Timestamp

Timestamp stores the value in a datetime64[ns] internal representation. For most purposes this is fine, but I'd love if ...

Pandas Pandas for Finance AttributeError: 'DataFrame' object has no attribute 'rolling'

Code Sample, a copy-pastable example if possiblerets.rolling(window=22).min().plot.line(figsize=(15,10))Expected Outputo...

Pandas Pandas for Finance FileNotFoundError: [Errno 2] No such file or directory: 'quotes/AMZN.csv'

Code Sample, a copy-pastable example if possiblepython 3.5pandas 0.17for g, grp in p.groupby(level='stock'): grp.to_c...

Pandas read_csv false_values only partially applied

Code Sample, a copy-pastable example if possibleimport pandas as pdimport numpy as nppd.DataFrame({'one' : pd.Series([&q...

Pandas BUG: reshaping of Panel breaking with datetimeindex

In [32]: pd.__version__Out[32]: '0.18.0rc1+40.gbd1eebb'In [23]: dr = pd.date_range('20150101','20150131',freq='T')In [24...

Pandas Panel resample fails for degenerate panels

Code Sample, a copy-pastable example if possibleimport numpy as npimport pandas as pddr = pd.date_range('20100101','2015...
上一页 下一页
.