pandas2
pandas2 copied to clipboard
Design documents and code for the pandas 2.0 effort.
As pandas version 2.0.0 has been shipped, is it an option to archive this repository and to withdraw the pypi release/entry https://pypi.org/project/pandas2/ to avoid confusion of users? @wesm @jorisvandenbossche friendly...
Just a question: I see that the latest commit in this repository has been more than 2 years ago. Is this project meant to replace pandas and if so: is...
xref https://github.com/pandas-dev/pandas/issues/9180. should be able to slot this in as a substitue for ``pd.read_json`` before pandas2.
A pattern that has repeatedly caught me out is stringing operations together like: `df['myfield'].notnull().unique()` .. the error here is that `notnull()` returns a mask rather than a slice of the...
Fix typo
A lot of headaches are caused by the fact that `pd.NaT` is _usually_ a `datetime` but occasionally a `timedelta`. In some cases this leads to unavoidable internal inconsistency (pandas-dev/pandas#19124). For...
Index.rst was linking to http://github.com/pydata/pandas-design which is now deprecated. Changed to https://github.com/pandas-dev/pandas2.
The `pandas.Index` is fantastically useful, but in many cases pandas's insistence on always having an index gets in the way. Usually, it can be safely ignored when not relevant, especially...
I haven't been able to wrap my head around these behaviors: ``` In [10]: s = pd.Series() In [11]: s['a'] = 7 In [12]: s Out[12]: a 7 dtype: int64...
The most common use case for panels I've seen has been as an aligning container for data frames -- you can insert a DataFrame "item" as you would a column...