We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bf01ae commit 8765288Copy full SHA for 8765288
doc/source/v0.13.0.txt
@@ -129,6 +129,17 @@ Enhancements
129
- Added a more informative error message when plot arguments contain
130
overlapping color and style arguments (:issue:`4402`)
131
132
+ - NaN handing in get_dummies (:issue:`4446`) with `dummy_na`
133
+
134
+ .. ipython:: python
135
+ # previously, nan was erroneously counted as 2 here
136
+ # now it is not counted at all
137
+ get_dummies([1, 2, np.nan])
138
139
+ # unless requested
140
+ get_dummies([1, 2, np.nan], dummy_na=True)
141
142
143
- ``timedelta64[ns]`` operations
144
145
- A Series of dtype ``timedelta64[ns]`` can now be divided by another
0 commit comments