effective_pandas_book icon indicating copy to clipboard operation
effective_pandas_book copied to clipboard

Errata and code for Effective Pandas book

Results 28 effective_pandas_book issues
Sort by recently updated
recently updated
newest added

Hi! So I'm using the "recipe style" of working on a dataframe and assigning some new new columns as part of that process (which works great). Once of the last...

41 20.818182 42 14.636364 43 30.363636 44 15.818182 45 39.772727 should be: 40 20.818182 41 14.636364 42 30.363636 43 15.818182 44 39.772727

incorrect spelling, should be "Olson"

Hi Matt, thanks for your book, really enjoying it. I'd suggest a couple of changes in chapter 27: 1. Within the description of the parameters of method `pandas.DataFrame.groupby()` at page...

- [ ] `s.gt(s2)` operator should be `s > s2` - [ ] `s.ge(s2)` operator should be `s >= s2` - [ ] `s.lt(s2)` operator should be `s < s2`...

On page 75 there is a method on the picture "s.loc[-2:]". It gives an error because it cannot do slice indexing on Index of type int.

Hi Matt! First off, thank you for your amazing book! :) I'm going through Chapter 4. I totally understand the discussion behind the _nullable integer type_. Instead, I'm wondering why...

Please can the author provide solutions to all the exercises. whilst newbies can fumble our way thru them, I would like to see the 'MASTERS' solutions. From them we see...