Nineya
Home
Blog
Pandas SciPy sprints
2025-02-10 00:33:23
639
@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
2025-02-10 00:33:19
2565
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
2025-02-10 00:33:14
781
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)
2025-02-10 00:33:09
1004
======================================================================ERROR: test_creating_and_reading_multiple_sheets (...
Pandas Groupby - Apply method doesn't handle arguments correctly
2025-02-10 00:33:04
410
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
2025-02-10 00:32:59
273
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
2025-02-10 00:32:54
2353
>>> 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
2025-02-10 00:32:49
1001
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
2025-02-10 00:32:44
2540
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
2025-02-10 00:32:39
279
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
2025-02-10 00:32:33
9253
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
2025-02-10 00:32:27
3317
(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()
2025-02-10 00:32:21
2526
Currently pandas.DataFrame.to_json supports orient=records which yields a file of [{column -> value}, ... , {column -...
Pandas Disable networking in tests?
2025-02-10 00:32:16
1195
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 ?
2025-02-10 00:32:11
899
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
2025-02-10 00:32:07
3381
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
2025-02-10 00:32:02
1209
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
2025-02-10 00:31:54
344
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
2025-02-10 00:31:49
3364
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
2025-02-10 00:31:44
1693
I see #1807 issue reoccurring in my setup:>>> Series(Series([1,3,4]).unique())0 11 32 4dtype: int64And...
上一页
下一页
1
…
83
84
85
86
87
…
2246
.