Pandas SciPy sprints

@jreback, @shoyer, and @cpcloud will be at SciPy this year, and are going to host a sprint on July 11 (saturday).SciPy s...

Pandas slicing dataframe with date index is not working properly

When slicing data time - indexed dataframe with date in string format, it works:df.ix['2014-11-12'].head()Out[55]: ...

Pandas Sorted dataframe resets after indexing

I found a in issue when sorting followed by indexing in pandas when reset_index() is not used. I'm not sure why but the ...

Pandas ERROR: test_creating_and_reading_multiple_sheets (pandas.io.tests.test_excel.ExcelReaderTests)

======================================================================ERROR: test_creating_and_reading_multiple_sheets (...

Pandas Groupby - Apply method doesn't handle arguments correctly

The apply method on a groupby object appears to send all arguments to the applied function. As in, if you try to do df.g...

Pandas DOC: index's difference method not in API documentation

http://pandas.pydata.org/pandas-docs/stable/api.htmle.g. X_train.columns.difference(X_test.columns)Comment From: jorisva...

Pandas BUG: Timestamp construction from numpy.datetime64 creates a naive Timestamp

>>> d = '2013-02-02T02:12:34+0600'>>> ts_from_str = pandas.Timestamp(d)>>> ts_from_dt64 = pan...

Pandas DOC: API docs broken with sphinx 1.3.x

Just to track this on our side: as raised by @shoyer, there is a bug in the latest sphinx version that causes part of th...

Pandas SettingWithCopyWarning: possible spurious warning after dropna() call

I get a SettingWithCopyWarning after the use of dropna, which does not really seem logical:In [102]: df = pd.DataFrame({...

Pandas How To Filter Pandas DataFrames Using Dynamic URL Query String

Currently i am having an question in python pandas. I want to filter a dataframe using url query string dynamically.Deta...

Pandas read_sql_table bug on columns with dots

read_sql_table handles columns with dots in the name incorrectly (removes name before dot)from sqlalchemy import create_...

Pandas Error in indexing Series and DataFrames with a list: valid index cannot be found

(Hopefully I did not find this issue in the list, because there was none...) I have experienced the following issue for ...

Pandas new feature/enhancement request: new JSON string option for pandas.DataFrame.to_json()

Currently pandas.DataFrame.to_json supports orient=records which yields a file of [{column -> value}, ... , {column -...

Pandas Disable networking in tests?

I'd like to run pandas tests but not have it do any tests that require networking. I can get the tests to pass if I disc...

Pandas series round ?

Does .round support arbitrary precision rounding in Python 3.4.3/Pandas 0.16.1?(Pdb) data['h'].round()0 01 542 ...

Pandas false warning when using to_sql with a dataframe using MultiIndex

Hi, I get a warning that confused me, and in my opinion is wrong. See code - that should produce warning with further co...

Pandas BUG: Merge on multiple indices fails with incorrect error message

I have a 2 DataFrame objects that I am trying to merge on a hierarchical index in one (top below) object with two column...

Pandas Typo in pandas/pandas/io/parsers.py

In pandas/pandas/io/parsers.py line 1000, np.uin8 is referred. It is an inexistent member in numpy. I suppose it's a typ...

Pandas Can't create DataFrame from SQLite3 cursor

When I pass cursor as data to DataFrame constructor an error occurs.cursor = sqlite.execute(sql)pd.DataFrame(cursor)/usr...

Pandas Sort broken after unique -> Series

I see #1807 issue reoccurring in my setup:>>> Series(Series([1,3,4]).unique())0 11 32 4dtype: int64And...
上一页 下一页
.