玖涯软件开发
Home
Blog
Pandas Installation issue with --editable option
2025-02-10 00:57:49
22853
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
2025-02-10 00:57:43
5178
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.
2025-02-10 00:57:36
3660
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
2025-02-10 00:57:28
1284
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
2025-02-10 00:57:23
1181
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?
2025-02-10 00:57:19
1547
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
2025-02-10 00:57:14
1525
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
2025-02-10 00:57:09
3232
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
2025-02-10 00:57:04
1760
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
2025-02-10 00:56:59
10923
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
2025-02-10 00:56:54
3404
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
2025-02-10 00:56:48
2852
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
2025-02-10 00:56:42
1228
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
2025-02-10 00:56:36
2376
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
2025-02-10 00:56:31
4009
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
2025-02-10 00:56:26
1231
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
2025-02-10 00:56:20
2608
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
2025-02-10 00:56:14
1215
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')
2025-02-10 00:56:09
3443
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
2025-02-10 00:56:04
1609
Code Sample, a copy-pastable example if possibleimport pandas as pddf = pd.DataFrame({'a': [1,2,3,4], 'b':[None, None, N...
上一页
下一页
1
…
69
70
71
72
73
…
2246
.