Nineya
Home
Blog
Pandas Feature Request: add explicit support for double (multiple) inequalities
2025-02-10 00:59:30
831
This will improve readability:As is:df[(8 < df.foo + df.bar) & (df.foo + df.bar <= 42)].measure.sum()To be:df[...
Pandas RuntimeWarning: Invalid value encountered in percentile RuntimeWarning
2025-02-10 00:59:26
1447
A small, complete example of the issueI am Using PycharmPyCharm Community Edition 2016.2.3Build #PC-162.1967.10, built o...
Pandas Travis pip install finds 0.19rc1 which fails
2025-02-10 00:59:22
5976
A small, complete example of the issue# Your code here# This is what I have in my project's setup.py install_requires=['...
Pandas Expose pandas.json.dump in the public API?
2025-02-10 00:59:17
720
I could not find any public documentation for pandas.json.dump, so I guess this makes it private? Or is it public and I ...
Pandas DataFrame.apply(axis=1) to return a series with dictionary as value
2025-02-10 00:59:12
2678
# Your code heredf = pd.util.testing.makeTimeDataFrame(5)df2 = df.reset_index()ff = lambda row: {'some key': row['A']}# ...
Pandas “Already tz-aware” error when reading h5 file using python 3 (but not 2)
2025-02-10 00:59:08
8959
I have an h5 store named weather.h5. My default Python environment is 3.5.2. When I try to read this store I get TypeErr...
Pandas DatetimeIndex.append not working
2025-02-10 00:59:02
2197
A small, complete example of the issue# Your code herexx = pd.to_datetime(['2000-01-01','2000-02-01'])xx.append(xx[0])Tr...
Pandas MultiIndex slicing with .loc returns wrong results
2025-02-10 00:58:57
3634
A small, complete example of the issueimport pandasidx = pandas.date_range("2012", "2016", freq=&quo...
Pandas Greedy date inference in read_csv leads to inconsistent data
2025-02-10 00:58:51
2765
A small, complete example of the issueimport pandas as pddf = pd.read_csv('greedy.txt', parse_dates=['EuroDate'])print(d...
Pandas multiple tests errors and failures while building 0.18.1+git25-ga7469cf on i386 (ok on amd64)
2025-02-10 00:58:45
3351
Code Sample, a copy-pastable example if possible% grep -2 '^\(FAIL\|ERROR\|[^ ]*Error:\)' pandas_0.18.1+git25-ga7469cf-1...
Pandas Support reading random rows in read_csv
2025-02-10 00:58:41
593
It is very common to read random rows in a large csv file, typically for testing with a small dataset, or fit the limit ...
Pandas Is there a way to append dataframes together more memory-wised efficient?
2025-02-10 00:58:35
1273
for example, i want to concat/append two dataframes into one and only use the final dataframe later on:`import numpy as ...
Pandas Problem using argsort in DataFrame
2025-02-10 00:58:30
1686
In [90]: dfOut[90]: A B C D E0 0.444939 0.407554 0.460148 0.465239 0.4626...
Pandas Please don't drop pandas.rpy.common.convert_robJ
2025-02-10 00:58:25
4446
Currently pandas is the only well-known package supporting conversion from rpy2 object to dictionary.There is warning me...
Pandas Problem reading HTML tables with colspan
2025-02-10 00:58:20
1902
Hi, guys! First of all, thanks for making this open source! =D Keep up the good work!SCRIPTimport pandas as pddfs = pd.r...
Pandas to_numeric fails to coerce on TypeError, only works on ValueError
2025-02-10 00:58:14
2293
Calling to_numeric with errors='coerce' should coerce all non-numeric values to NaN. However, it only seems to work whe...
Pandas read_hdf crash python process when use it in multithread code
2025-02-10 00:58:09
3359
one of my folder contains multiple h5 files, and I tried to load them into dataframes and then concat these df into one....
Pandas multiple dispatch problem when comparing pandas Series against numpy scalars
2025-02-10 00:58:04
1376
Code Sample, a copy-pastable example if possibleimport pandas as pdimport numpy as np# this workspd.Series([7,8,9]) >...
Pandas [0.19dev] Time-series aware rolling window with MultiIndex with a time-frequency index fails
2025-02-10 00:58:00
3238
Code Sample, a copy-pastable example if possibledft = pd.DataFrame({'B': [0, 1, 2, np.nan, 4]}, index=pd.date_range('20...
Pandas BUG: MultiIndex set_levels is not symmetrical with get_level_values
2025-02-10 00:57:55
3794
Code Sampleimport pandas as pdimport iotext = """A B C1 1 11 2 22 1 32 2 4"""df = pd.read_...
上一页
下一页
1
…
68
69
70
71
72
…
2246
.