Block or Report
Block or report jbrockmendel
Contact GitHub support about this user’s behavior. Learn more about reporting abuse.
Report abusePinned Loading
-
dateutil Public
Forked from dateutil/dateutil
Useful extensions to the standard Python datetime features
Python
-
pandas Public
Forked from pandas-dev/pandas
Flexible and powerful data analysis / manipulation library for Python, providing labeled data structures similar to R data.frame objects, statistical functions, and much more
-
-
statsmodels Public
Forked from statsmodels/statsmodels
Statsmodels: statistical modeling and econometrics in Python
Python
3,257 contributions in the last year
Contribution activity
November 2021
Created 61 commits in 1 repository
Created a pull request in pandas-dev/pandas that received 15 comments
BUG: handle NaNs in FloatingArray.equals
closes #44382 tests added / passed Ensure all linting tests pass, see here for how to run them whatsnew entry
Opened 61 other pull requests in 1 repository
pandas-dev/pandas
8
open
52
merged
1
closed
- BUG: DataFrame.shift with axis=1 and mismatched fill_value
- BUG: Indexing on nullable column
- Backport PR #44518 on branch 1.3.x (BUG: DataFrame with scalar tzaware Timestamp)
- REF: remove checknull_old
- CLN: remove is_null_datetimelike
- BUG: td64+offset
- CLN: tighten noqas
- DEPR: DateOffset.apply
- REF: implement _maybe_squeeze_arg
- REF: remove unused allow_object kwarg from sequence_to_dt64ns
- BUG: DataFrame with scalar tzaware Timestamp
- BUG: IntegerArray/FloatingArray constructors mismatched NAs
- BUG: Period incorrectly allowing np.timedelta64('NaT')
- REF: combine isnaobj+isnaobj_old
- PERF: lib.Validator iteration
- TST: share a bunch of test_custom_business_day
- BUG: NumericArray.__pos__ should make a copy
- CLN: TODOs and FIXMEs
- TST: flaky gcs compression test
- BUG: Tick + np.timedelta64
- ENH: don't silently ignore dtype in NaT/Timestamp/Timedelta to_numpy
- BUG: Series/Index arithmetic result names with NAs
- REF: dont dispatch Block.putmask to Block.where
- TST: Troubleshoot windows timeouts
- CLN: TODOs and FIXMEs
- Some pull requests not shown.
Reviewed 57 pull requests in 1 repository
pandas-dev/pandas
57 pull requests
- BUG: Indexing on nullable column
- BUG: IntegerArray/FloatingArray constructors mismatched NAs
- TST: Avoid time dependency in GCS zip test
- CI: fix deprecation warning on interpolation
- PERF/BUG: ensure we store contiguous arrays in DataFrame(ndarray) for ArrayManager
- BUG: Index with object dtype and negative loc for insert adding none and replacing existing value
- ENH: __array_ufunc__ handle np.minimum.reduce
- DEPR: DateOffset.apply
- Fix/26837 format array
- BUG: metadata propagation in .loc, .iloc and Series.to_frame()
- BUG: fix get_indexer_non_unique() with 'object' targets with NaNs (#4…
- FIX BUG: Timestamp __add__/__sub__ DateOffset with nanoseconds lost.
- COMPAT: Matplotlib 3.5.0
- REF: combine isnaobj+isnaobj_old
- TST: fix deprecation warning in test
- testing broadcast on multiindex
- [ArrayManager] Array version of fillna logic
- ENH/POC/WIP: EA-backed Index
- ENH: Add numba engine to rolling/expanding.std/var
- Proof of concept for Copy-on-Write implementation
- BUG: fix timedelta floordiv with scalar float
- BUG: Series/Index arithmetic result names with NAs
- TST: troubleshoot xfails
- REF: EA quantile logic to EA._quantile
- [ArrayManager] Array version of putmask logic
- Some pull request reviews not shown.
Created an issue in pandas-dev/pandas that received 4 comments
BUG/API: DataFrame.iloc[:, foo] = bar inplaceness?
In 1.3.0 we made it so that df["A"] = foo never operates in-place (xref whatsnew, #33457) and mostly made it so that df.loc[foo, bar] = baz tries t…