Pandas Error in matplotlib with datetime64 with pandas 0.21.0

With pandas 0.21 this code with plotting datetime64 fails:import pandas as pdimport numpy as npimport matplotlib.pyplot ...

Pandas The difficulty in apply function of very large DataFrame.

Pandas is a very handy library when it comes to handling data for data science but its there is always some need of mani...

Pandas Add parameter always_suffix to DataFrame.merge

Code SampleA = pd.DataFrame({'a': [1, 2, 3], 'b': [4, 5, 6]})B = pd.DataFrame({'a': [1, 2, 3], 'c': [7, 8, 9]})def foo(A...

Pandas read_qvd would be nice to have

Hi,a lot of data is stored in .qvd files and it would be nice to read a QVD into a Pandas Dataframe, e.g.:import pandas ...

Pandas DataFrame.min and max with axis=None do not calculate total minimum

Code Sample, a copy-pastable example if possibleimport numpy as npimport pandas as pddf = pd.DataFrame.from_dict({'a': [...

Pandas height has been deprecated.

How to fix this warning?height has been deprecated.From:import pandas as pdpd.set_option('display.height', 10000)Version...

Pandas read.amazon.com stops working after enabling offline mode

After enabling the offline read mode Kindle cloud reader, read.amazon.com, the site stops working claiming the browser i...

Pandas inconsistency in concat behavior in pandas 0.21.0

Code Sample, a copy-pastable example if possibleIn [1]: from collections import OrderedDictIn [2]: import pandas as pdIn...

Pandas Setting values with multiindex .loc

Code Sampledf = pd.DataFrame({'A':[1,2,3],'B':[4,5,6]})df = df.stack()df.loc[0] = [0,0]This returns In [27]: dfOut[27]:0...

Pandas Sum of an empty Series is now nan, should be 0 (regression in 0.21 from 0.20.3)

Code Sample, a copy-pastable example if possibleCurrent (0.21) incorrect behavior:>>> import pandas as pd>&g...

Pandas Regression in exporting of multiindex column dataframes

Code Sample, a copy-pastable example if possibleimport pandaspandas.DataFrame({(1, 2): 3, (1, 3): 1, (2, 1): 2, (2, 2): ...

Pandas BUG: infer_dtype is incorrect for numpy arrays containing strings and NaN

Code Sample, a copy-pastable example if possibleOn master:In [3]: values = ['a', 'b', np.nan]In [4]: lib.infer_dtype(np....

Pandas DatetimeIndex not formatted for plots

Code Sample, a copy-pastable example if possibleimport pandas as pdimport matplotlib.pyplot as plt# make a time seriesin...

Pandas pd.read_json yields: OSError: [Errno 22] Invalid argument

Code Sample, a copy-pastable example if possibledata = '/Users/davidleifer/Desktop/Geog500/thesis/data/merged-file.json'...

Pandas API Docs Rework

What do we want out of our API docs? What are the current issues?I think we're (mostly) happy with api.rst: we manually ...

Pandas BUG from_csv na_filter=False not working with index

Code Sample, a copy-pastable example if possiblepd.DataFrame({"col1": ["NA"], "col2": [&qu...

Pandas .drop() reacts differently when lables changed

panads version is 0.20.2df=pd.DataFrame({'0':['x',np.nan,np.nan],'col':range(3)}) 0 col0 x 01 NaN 12 NaN...

Pandas Assignment of subpart of data frame with multi index yields user surprise

from collections import OrderedDictimport randomimport pandas as pdpd.__version__'0.20.3'df = pd.DataFrame.from_dict(Ord...

Pandas enhancement request: support for MDF

It would be great to have support within pandas for the MDF format. Something like mdfreader.Comment From: gfyoung@copp...

Pandas Pandas 0.21.0 requires old numpy 1.9.3

Hi,when updating pandas in conda, i'm asked to downgrade numpy.Jiris-MacBook-Pro:~ u$ conda update pandasFetching packag...
上一页 下一页
.