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/style.ipynb
+1-1
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@
12
12
"\n",
13
13
"<span style=\"color: red\">*Provisional: This is a new feature and still under development. We'll be adding features and possibly making breaking changes in future releases. We'd love to hear your feedback.*</span>\n",
14
14
"\n",
15
-
"This document is written as a Jupyter Notebook, and can be viewed or downloaded [here](http://nbviewer.ipython.org/github/pandas-dev/pandas/blob/master/doc/source/html-styling.ipynb).\n",
15
+
"This document is written as a Jupyter Notebook, and can be viewed or downloaded [here](http://nbviewer.ipython.org/github/pandas-dev/pandas/blob/master/doc/source/style.ipynb).\n",
16
16
"\n",
17
17
"You can apply **conditional formatting**, the visual styling of a DataFrame\n",
18
18
"depending on the data within, by using the ``DataFrame.style`` property.\n",
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.20.2.txt
+10-6
Original file line number
Diff line number
Diff line change
@@ -19,14 +19,15 @@ Highlights include:
19
19
Enhancements
20
20
~~~~~~~~~~~~
21
21
22
-
22
+
- Unblocked access to additional compression types supported in pytables: 'blosc:blosclz, 'blosc:lz4', 'blosc:lz4hc', 'blosc:snappy', 'blosc:zlib', 'blosc:zstd' (:issue:`14478`)
23
23
24
24
.. _whatsnew_0202.performance:
25
25
26
26
Performance Improvements
27
27
~~~~~~~~~~~~~~~~~~~~~~~~
28
28
29
-
29
+
- Performance regression fix when indexing with a list-like (:issue:`16285`)
30
+
- Performance regression fix for small MultiIndexes (:issuse:`16319`)
30
31
31
32
.. _whatsnew_0202.bug_fixes:
32
33
@@ -36,7 +37,7 @@ Bug Fixes
36
37
Conversion
37
38
^^^^^^^^^^
38
39
39
-
40
+
- Bug in ``pd.to_numeric()`` in which empty data inputs were causing Python to crash (:issue:`16302`)
40
41
41
42
42
43
Indexing
@@ -50,11 +51,15 @@ I/O
50
51
51
52
- :class:`pandas.io.formats.style.Styler` now has ``index`` parameter and corresponding method ``hide_index()`` to determine whether the index will be rendered in ouptut (:issue:`14194`)
52
53
- :class:`pandas.io.formats.style.Styler` now has ``hidden_cols`` parameter and corresponding method ``hide_columns()`` to determine whether columns will be hidden in output (:issue:`14194`)
54
+
- Bug that would force importing of the clipboard routines unnecessarily, potentially causing an import error on startup (:issue:`16288`)
55
+
53
56
54
57
55
58
Plotting
56
59
^^^^^^^^
57
60
61
+
- Bug in ``DataFrame.plot`` with a single column and a list-like ``color`` (:issue:`3486`)
62
+
58
63
59
64
60
65
@@ -67,13 +72,12 @@ Groupby/Resample/Rolling
67
72
Sparse
68
73
^^^^^^
69
74
70
-
71
-
75
+
- Bug in construction of SparseDataFrame from ``scipy.sparse.dok_matrix`` (:issue:`16179`)
72
76
73
77
Reshaping
74
78
^^^^^^^^^
75
79
76
-
80
+
- Bug in ``DataFrame.stack`` with unsorted levels in MultiIndex columns (:issue:`16323`)
0 commit comments