Nineya
Home
Blog
Pandas pandas.test() FAILS after fresh anaconda install
2025-02-10 00:41:58
1470
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)
2025-02-10 00:41:53
3376
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
2025-02-10 00:41:48
2685
Code Sampledf.groupby(level=['first_name','last_name']).rolling(window=5)-----------------------------------------------...
Pandas Segmentation fault
2025-02-10 00:41:43
1336
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
2025-02-10 00:41:38
9782
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
2025-02-10 00:41:33
1688
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
2025-02-10 00:41:29
1989
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)
2025-02-10 00:41:23
3021
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
2025-02-10 00:41:18
3731
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
2025-02-10 00:41:13
4745
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
2025-02-10 00:41:08
1311
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
2025-02-10 00:41:04
3006
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
2025-02-10 00:40:58
2073
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
2025-02-10 00:40:53
1691
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
2025-02-10 00:40:48
3561
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'
2025-02-10 00:40:43
478
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'
2025-02-10 00:40:36
1003
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
2025-02-10 00:40:31
1625
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
2025-02-10 00:40:25
1035
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
2025-02-10 00:40:21
1519
Code Sample, a copy-pastable example if possibleimport numpy as npimport pandas as pddr = pd.date_range('20100101','2015...
上一页
下一页
1
…
78
79
80
81
82
…
2246
.