You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.17.1.txt
+10-10
Original file line number
Diff line number
Diff line change
@@ -29,22 +29,22 @@ Enhancements
29
29
30
30
- Option to ``.info()`` and ``.memory_usage()`` to provide for deep introspection of memory consumption. Note that this can be expensive to compute and therefore is an optional parameter. (:issue:``11595``)
31
31
32
-
.. ipython:: python
32
+
.. ipython:: python
33
33
34
-
df = DataFrame({'A' : ['foo']*1000})
35
-
df['B'] = df['A'].astype('category')
34
+
df = DataFrame({'A' : ['foo']*1000})
35
+
df['B'] = df['A'].astype('category')
36
36
37
-
# shows the '+' as we have object dtypes
38
-
df.info()
37
+
# shows the '+' as we have object dtypes
38
+
df.info()
39
39
40
-
# we have an accurate memory assessment (but can be expensive to compute this)
41
-
df.info(memory_usage='deep')
40
+
# we have an accurate memory assessment (but can be expensive to compute this)
41
+
df.info(memory_usage='deep')
42
42
43
43
- ``Index`` now has a ``fillna`` method (:issue:`10089`)
44
44
45
-
.. ipython:: python
45
+
.. ipython:: python
46
46
47
-
pd.Index([1, np.nan, 3]).fillna(2)
47
+
pd.Index([1, np.nan, 3]).fillna(2)
48
48
49
49
.. _whatsnew_0171.api:
50
50
@@ -95,7 +95,7 @@ Bug Fixes
95
95
~~~~~~~~~
96
96
97
97
- Incorrectly distributed .c file in the build on ``PyPi`` when reading a csv of floats and passing ``na_values=<a scalar>`` would show an exception (:issue:`11374`)
98
-
- Bug in ``.to_latex()`` output broken when the index has a name (:issue:`10660`)
98
+
- Bug in ``.to_latex()`` output broken when the index has a name (:issue:`10660`)
99
99
- Bug in ``HDFStore.append`` with strings whose encoded length exceded the max unencoded length (:issue:`11234`)
100
100
- Bug in merging ``datetime64[ns, tz]`` dtypes (:issue:`11405`)
101
101
- Bug in ``HDFStore.select`` when comparing with a numpy scalar in a where clause (:issue:`11283`)
0 commit comments