Pandas Installation issue with --editable option

Hello,I'm trying to install pandas on Mac OS X 10.11.6 in a Django project. Pandas library is used with one of the 3rd p...

Pandas QuarterBegin wrong date

Would expect this to point to one of (1, 4, 7, 10)...#### Code Sample, a copy-pastable example if possibleimport pandas ...

Pandas str.extractall gives ValueError: Length of names must match number of levels in MultiIndex.

Code Sample, a copy-pastable example if possibles = Series(["HCPSS_000_123", "HCPSS_100_1234", "HCPSS_200_1234"], index=...

Pandas Recoding as numerical categories with multiple columns

Code Sample, a copy-pastable example if possibleThis SO questions asks the simple question of how to recode strings in a...

Pandas Faulty nogil assumption in _Py_HashDouble

Pandas uses _Py_HashDouble as the hash function for hashing floats. () in the 0.17.x and 0.18.x releases. This hash func...

Pandas Bug in timezone conversion when datetime index has duplicates?

Hello the Pandas team,I ran this morning into some nasty bug with Pandas 18.1. I was not able to find whether you are aw...

Pandas sum() does not honor skipna argument

sum() is giving 0.0 as the total, rather than NaN, when the entire row/column is NaN.Note that this bug does not arise i...

Pandas read_csv(compression='gzip') fails while reading compressed file from s3

reading gzipped csv from s3 bucket (private)import pandas as pdimport boto3session = boto3.Session()s3client = session.c...

Pandas Question / Possibly a Feature request: comparison machinery for unit tests

When it comes to writing unit tests that return a DataFrame or a TimeSeries there's a clear need to compare the output t...

Pandas BUG: Copying columns containing lists

BRIEF EXPLANATIONCopying a column using df.apply() will fail if that column contains lists and the first item in that co...

Pandas Inconsistent type casting between DataFrame and Series

There is an inconsistency between how Series and DataFrames export types to dicts. The issue only manifests if the dataf...

Pandas BUG: Panel.at[] bug with DatetimeIndex

In [1]: import pandas as pdIn [2]: import datetime as dtIn [3]: p = pd.Panel(0., items=list('abc'), ...

Pandas to_sql doesn't support decimal types - stored as text in database

I am using postgresql databaseCode Sample, a copy-pastable example if possiblea=pd.DataFrame({'a':[decimal.Decimal('0.1'...

Pandas Datatype of Integer changes depending on indexing method on a dataframe with an integer and a float column

Take a dataframe that has one integer and one float column, then use various methods to get the first integer element. I...

Pandas retrieving dataframe from HDFStore: row index "nan" incorrectly becomes NaN

Retrieving a dataframe previously stored in a HDFStore with a row label "nan" (string) is incorrectly retrieved as NaN.M...

Pandas Kernel dies when exporting large dataframe to json

ProblemThe kernel dies when I try to export relatively large data to json. No problems with short test data, it gets exp...

Pandas reindex(fill_value=None) fills with np.NaN instead of None

Code Sample, a copy-pastable example if possibleIn [12]: import pandas as pdIn [13]: s = pd.Series(['a', 'b'])In [14]: s...

Pandas groupby TimeStamp bug

Code Sample, a copy-pastable example if possiblex = pd.DataFrame(index = [1,1,2,2,2], data = pd.date_range("7:00&qu...

Pandas TypeError bug when using pandas.to_timedelta (astype() unexpected argument 'copy')

Code SampleRunning the following code:import numpy as npimport pandas as pddf = pd.DataFrame(np.random.randn(6,4),column...

Pandas Can't iterate a DataFrameGroupBy object if the group by key contains NaN

Code Sample, a copy-pastable example if possibleimport pandas as pddf = pd.DataFrame({'a': [1,2,3,4], 'b':[None, None, N...
上一页 下一页
.