Table Of Contents
- What’s New
- Installation
- Contributing to pandas
- Frequently Asked Questions (FAQ)
- Package overview
- 10 Minutes to pandas
- Tutorials
- Cookbook
- Intro to Data Structures
- Essential Basic Functionality
- Working with Text Data
- Options and Settings
- Indexing and Selecting Data
- MultiIndex / Advanced Indexing
- Computational tools
- Working with missing data
- Group By: split-apply-combine
- Merge, join, and concatenate
- Reshaping and Pivot Tables
- Time Series / Date functionality
- Time Deltas
- Categorical Data
- Visualization
- Style
- IO Tools (Text, CSV, HDF5, ...)
- Remote Data Access
- Enhancing Performance
- Sparse data structures
- Caveats and Gotchas
- rpy2 / R interface
- pandas Ecosystem
- Comparison with R / R libraries
- Comparison with SQL
- Comparison with SAS
- API Reference
- Internals
- Release Notes
Search
Enter search terms or a module, class or function name.
StyleΒΆ
New in version 0.17.1
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.
This document is written as a Jupyter Notebook, and can be viewed or downloaded here.
You can apply conditional formatting, the visual styling of a DataFrame
depending on the data within, by using the DataFrame.style
property.
This is a property that returns a pandas.Styler
object, which has
useful methods for formatting and displaying DataFrames.
The styling is accomplished using CSS.
You write "style functions" that take scalars, DataFrame
s or Series
, and return like-indexed DataFrames or Series with CSS "attribute: value"
pairs for the values.
These functions can be incrementally passed to the Styler
which collects the styles before rendering.
Contents¶
Building Styles¶
Pass your style functions into one of the following methods:
Styler.applymap
: elementwiseStyler.apply
: column-/row-/table-wise
Both of those methods take a function (and some other keyword arguments) and applies your function to the DataFrame in a certain way.
Styler.applymap
works through the DataFrame elementwise.
Styler.apply
passes each column or row into your DataFrame one-at-a-time or the entire table at once, depending on the axis
keyword argument.
For columnwise use axis=0
, rowwise use axis=1
, and for the entire table at once use axis=None
.
For Styler.applymap
your function should take a scalar and return a single string with the CSS attribute-value pair.
For Styler.apply
your function should take a Series or DataFrame (depending on the axis parameter), and return a Series or DataFrame with an identical shape where each value is a string with a CSS attribute-value pair.
Let's see some examples.
import pandas as pd
import numpy as np
np.random.seed(24)
df = pd.DataFrame({'A': np.linspace(1, 10, 10)})
df = pd.concat([df, pd.DataFrame(np.random.randn(10, 4), columns=list('BCDE'))],
axis=1)
df.iloc[0, 2] = np.nan
Here's a boring example of rendering a DataFrame, without any (visible) styles:
df.style
A | B | C | D | E | |
---|---|---|---|---|---|
0 | 1 | 1.32921 | nan | -0.31628 | -0.99081 |
1 | 2 | -1.07082 | -1.43871 | 0.564417 | 0.295722 |
2 | 3 | -1.6264 | 0.219565 | 0.678805 | 1.88927 |
3 | 4 | 0.961538 | 0.104011 | -0.481165 | 0.850229 |
4 | 5 | 1.45342 | 1.05774 | 0.165562 | 0.515018 |
5 | 6 | -1.33694 | 0.562861 | 1.39285 | -0.063328 |
6 | 7 | 0.121668 | 1.2076 | -0.00204021 | 1.6278 |
7 | 8 | 0.354493 | 1.03753 | -0.385684 | 0.519818 |
8 | 9 | 1.68658 | -1.32596 | 1.42898 | -2.08935 |
9 | 10 | -0.12982 | 0.631523 | -0.586538 | 0.29072 |
Note: The DataFrame.style
attribute is a propetry that returns a Styler
object. Styler
has a _repr_html_
method defined on it so they are rendered automatically. If you want the actual HTML back for further processing or for writing to file call the .render()
method which returns a string.
The above output looks very similar to the standard DataFrame HTML representation. But we've done some work behind the scenes to attach CSS classes to each cell. We can view these by calling the .render
method.
df.style.highlight_null().render().split('\n')[:10]
[u'', u' <style type="text/css" >', u' ', u' ', u' #T_bc5e3090_c9fe_11e6_8f44_778134d549ffrow0_col2 {', u' ', u' background-color: red;', u' ', u' }', u' ']
The row0_col2
is the identifier for that particular cell. We've also prepended each row/column identifier with a UUID unique to each DataFrame so that the style from one doesn't collide with the styling from another within the same notebook or page (you can set the uuid
if you'd like to tie together the styling of two DataFrames).
When writing style functions, you take care of producing the CSS attribute / value pairs you want. Pandas matches those up with the CSS classes that identify each cell.
Let's write a simple style function that will color negative numbers red and positive numbers black.
def color_negative_red(val):
"""
Takes a scalar and returns a string with
the css property `'color: red'` for negative
strings, black otherwise.
"""
color = 'red' if val < 0 else 'black'
return 'color: %s' % color
In this case, the cell's style depends only on it's own value.
That means we should use the Styler.applymap
method which works elementwise.
s = df.style.applymap(color_negative_red)
s
A | B | C | D | E | |
---|---|---|---|---|---|
0 | 1 | 1.32921 | nan | -0.31628 | -0.99081 |
1 | 2 | -1.07082 | -1.43871 | 0.564417 | 0.295722 |
2 | 3 | -1.6264 | 0.219565 | 0.678805 | 1.88927 |
3 | 4 | 0.961538 | 0.104011 | -0.481165 | 0.850229 |
4 | 5 | 1.45342 | 1.05774 | 0.165562 | 0.515018 |
5 | 6 | -1.33694 | 0.562861 | 1.39285 | -0.063328 |
6 | 7 | 0.121668 | 1.2076 | -0.00204021 | 1.6278 |
7 | 8 | 0.354493 | 1.03753 | -0.385684 | 0.519818 |
8 | 9 | 1.68658 | -1.32596 | 1.42898 | -2.08935 |
9 | 10 | -0.12982 | 0.631523 | -0.586538 | 0.29072 |
Notice the similarity with the standard df.applymap
, which operates on DataFrames elementwise. We want you to be able to resuse your existing knowledge of how to interact with DataFrames.
Notice also that our function returned a string containing the CSS attribute and value, separated by a colon just like in a <style>
tag. This will be a common theme.
Finally, the input shapes matched. Styler.applymap
calls the function on each scalar input, and the function returns a scalar output.
Now suppose you wanted to highlight the maximum value in each column.
We can't use .applymap
anymore since that operated elementwise.
Instead, we'll turn to .apply
which operates columnwise (or rowwise using the axis
keyword). Later on we'll see that something like highlight_max
is already defined on Styler
so you wouldn't need to write this yourself.
def highlight_max(s):
'''
highlight the maximum in a Series yellow.
'''
is_max = s == s.max()
return ['background-color: yellow' if v else '' for v in is_max]
df.style.apply(highlight_max)
A | B | C | D | E | |
---|---|---|---|---|---|
0 | 1 | 1.32921 | nan | -0.31628 | -0.99081 |
1 | 2 | -1.07082 | -1.43871 | 0.564417 | 0.295722 |
2 | 3 | -1.6264 | 0.219565 | 0.678805 | 1.88927 |
3 | 4 | 0.961538 | 0.104011 | -0.481165 | 0.850229 |
4 | 5 | 1.45342 | 1.05774 | 0.165562 | 0.515018 |
5 | 6 | -1.33694 | 0.562861 | 1.39285 | -0.063328 |
6 | 7 | 0.121668 | 1.2076 | -0.00204021 | 1.6278 |
7 | 8 | 0.354493 | 1.03753 | -0.385684 | 0.519818 |
8 | 9 | 1.68658 | -1.32596 | 1.42898 | -2.08935 |
9 | 10 | -0.12982 | 0.631523 | -0.586538 | 0.29072 |
In this case the input is a Series
, one column at a time.
Notice that the output shape of highlight_max
matches the input shape, an array with len(s)
items.
We encourage you to use method chains to build up a style piecewise, before finally rending at the end of the chain.
df.style.\
applymap(color_negative_red).\
apply(highlight_max)
A | B | C | D | E | |
---|---|---|---|---|---|
0 | 1 | 1.32921 | nan | -0.31628 | -0.99081 |
1 | 2 | -1.07082 | -1.43871 | 0.564417 | 0.295722 |
2 | 3 | -1.6264 | 0.219565 | 0.678805 | 1.88927 |
3 | 4 | 0.961538 | 0.104011 | -0.481165 | 0.850229 |
4 | 5 | 1.45342 | 1.05774 | 0.165562 | 0.515018 |
5 | 6 | -1.33694 | 0.562861 | 1.39285 | -0.063328 |
6 | 7 | 0.121668 | 1.2076 | -0.00204021 | 1.6278 |
7 | 8 | 0.354493 | 1.03753 | -0.385684 | 0.519818 |
8 | 9 | 1.68658 | -1.32596 | 1.42898 | -2.08935 |
9 | 10 | -0.12982 | 0.631523 | -0.586538 | 0.29072 |
Above we used Styler.apply
to pass in each column one at a time.
*Debugging Tip*: If you're having trouble writing your style function, try just passing it into DataFrame.apply
. Internally, Styler.apply
uses DataFrame.apply
so the result should be the same.
What if you wanted to highlight just the maximum value in the entire table?
Use .apply(function, axis=None)
to indicate that your function wants the entire table, not one column or row at a time. Let's try that next.
We'll rewrite our highlight-max
to handle either Series (from .apply(axis=0 or 1)
) or DataFrames (from .apply(axis=None)
). We'll also allow the color to be adjustable, to demonstrate that .apply
, and .applymap
pass along keyword arguments.
def highlight_max(data, color='yellow'):
'''
highlight the maximum in a Series or DataFrame
'''
attr = 'background-color: {}'.format(color)
if data.ndim == 1: # Series from .apply(axis=0) or axis=1
is_max = data == data.max()
return [attr if v else '' for v in is_max]
else: # from .apply(axis=None)
is_max = data == data.max().max()
return pd.DataFrame(np.where(is_max, attr, ''),
index=data.index, columns=data.columns)
When using Styler.apply(func, axis=None)
, the function must return a DataFrame with the same index and column labels.
df.style.apply(highlight_max, color='darkorange', axis=None)
A | B | C | D | E | |
---|---|---|---|---|---|
0 | 1 | 1.32921 | nan | -0.31628 | -0.99081 |
1 | 2 | -1.07082 | -1.43871 | 0.564417 | 0.295722 |
2 | 3 | -1.6264 | 0.219565 | 0.678805 | 1.88927 |
3 | 4 | 0.961538 | 0.104011 | -0.481165 | 0.850229 |
4 | 5 | 1.45342 | 1.05774 | 0.165562 | 0.515018 |
5 | 6 | -1.33694 | 0.562861 | 1.39285 | -0.063328 |
6 | 7 | 0.121668 | 1.2076 | -0.00204021 | 1.6278 |
7 | 8 | 0.354493 | 1.03753 | -0.385684 | 0.519818 |
8 | 9 | 1.68658 | -1.32596 | 1.42898 | -2.08935 |
9 | 10 | -0.12982 | 0.631523 | -0.586538 | 0.29072 |
Building Styles Summary¶
Style functions should return strings with one or more CSS attribute: value
delimited by semicolons. Use
Styler.applymap(func)
for elementwise stylesStyler.apply(func, axis=0)
for columnwise stylesStyler.apply(func, axis=1)
for rowwise stylesStyler.apply(func, axis=None)
for tablewise styles
And crucially the input and output shapes of func
must match. If x
is the input then func(x).shape == x.shape
.
Finer Control: Slicing¶
Both Styler.apply
, and Styler.applymap
accept a subset
keyword.
This allows you to apply styles to specific rows or columns, without having to code that logic into your style
function.
The value passed to subset
behaves simlar to slicing a DataFrame.
- A scalar is treated as a column label
- A list (or series or numpy array)
- A tuple is treated as
(row_indexer, column_indexer)
Consider using pd.IndexSlice
to construct the tuple for the last one.
df.style.apply(highlight_max, subset=['B', 'C', 'D'])
A | B | C | D | E | |
---|---|---|---|---|---|
0 | 1 | 1.32921 | nan | -0.31628 | -0.99081 |
1 | 2 | -1.07082 | -1.43871 | 0.564417 | 0.295722 |
2 | 3 | -1.6264 | 0.219565 | 0.678805 | 1.88927 |
3 | 4 | 0.961538 | 0.104011 | -0.481165 | 0.850229 |
4 | 5 | 1.45342 | 1.05774 | 0.165562 | 0.515018 |
5 | 6 | -1.33694 | 0.562861 | 1.39285 | -0.063328 |
6 | 7 | 0.121668 | 1.2076 | -0.00204021 | 1.6278 |
7 | 8 | 0.354493 | 1.03753 | -0.385684 | 0.519818 |
8 | 9 | 1.68658 | -1.32596 | 1.42898 | -2.08935 |
9 | 10 | -0.12982 | 0.631523 | -0.586538 | 0.29072 |
For row and column slicing, any valid indexer to .loc
will work.
df.style.applymap(color_negative_red,
subset=pd.IndexSlice[2:5, ['B', 'D']])
A | B | C | D | E | |
---|---|---|---|---|---|
0 | 1 | 1.32921 | nan | -0.31628 | -0.99081 |
1 | 2 | -1.07082 | -1.43871 | 0.564417 | 0.295722 |
2 | 3 | -1.6264 | 0.219565 | 0.678805 | 1.88927 |
3 | 4 | 0.961538 | 0.104011 | -0.481165 | 0.850229 |
4 | 5 | 1.45342 | 1.05774 | 0.165562 | 0.515018 |
5 | 6 | -1.33694 | 0.562861 | 1.39285 | -0.063328 |
6 | 7 | 0.121668 | 1.2076 | -0.00204021 | 1.6278 |
7 | 8 | 0.354493 | 1.03753 | -0.385684 | 0.519818 |
8 | 9 | 1.68658 | -1.32596 | 1.42898 | -2.08935 |
9 | 10 | -0.12982 | 0.631523 | -0.586538 | 0.29072 |
Only label-based slicing is supported right now, not positional.
If your style function uses a subset
or axis
keyword argument, consider wrapping your function in a functools.partial
, partialing out that keyword.
my_func2 = functools.partial(my_func, subset=42)
Finer Control: Display Values¶
We distinguish the display value from the actual value in Styler
.
To control the display value, the text is printed in each cell, use Styler.format
. Cells can be formatted according to a format spec string or a callable that takes a single value and returns a string.
df.style.format("{:.2%}")
A | B | C | D | E | |
---|---|---|---|---|---|
0 | 100.00% | 132.92% | nan% | -31.63% | -99.08% |
1 | 200.00% | -107.08% | -143.87% | 56.44% | 29.57% |
2 | 300.00% | -162.64% | 21.96% | 67.88% | 188.93% |
3 | 400.00% | 96.15% | 10.40% | -48.12% | 85.02% |
4 | 500.00% | 145.34% | 105.77% | 16.56% | 51.50% |
5 | 600.00% | -133.69% | 56.29% | 139.29% | -6.33% |
6 | 700.00% | 12.17% | 120.76% | -0.20% | 162.78% |
7 | 800.00% | 35.45% | 103.75% | -38.57% | 51.98% |
8 | 900.00% | 168.66% | -132.60% | 142.90% | -208.94% |
9 | 1000.00% | -12.98% | 63.15% | -58.65% | 29.07% |
Use a dictionary to format specific columns.
df.style.format({'B': "{:0<4.0f}", 'D': '{:+.2f}'})
A | B | C | D | E | |
---|---|---|---|---|---|
0 | 1 | 1000 | nan | -0.32 | -0.99081 |
1 | 2 | -100 | -1.43871 | +0.56 | 0.295722 |
2 | 3 | -200 | 0.219565 | +0.68 | 1.88927 |
3 | 4 | 1000 | 0.104011 | -0.48 | 0.850229 |
4 | 5 | 1000 | 1.05774 | +0.17 | 0.515018 |
5 | 6 | -100 | 0.562861 | +1.39 | -0.063328 |
6 | 7 | 0000 | 1.2076 | -0.00 | 1.6278 |
7 | 8 | 0000 | 1.03753 | -0.39 | 0.519818 |
8 | 9 | 2000 | -1.32596 | +1.43 | -2.08935 |
9 | 10 | -000 | 0.631523 | -0.59 | 0.29072 |
Or pass in a callable (or dictionary of callables) for more flexible handling.
df.style.format({"B": lambda x: "Β±{:.2f}".format(abs(x))})
--------------------------------------------------------------------------- UnicodeDecodeError Traceback (most recent call last) /home/joris/miniconda3/envs/docs/lib/python2.7/site-packages/IPython/core/formatters.pyc in __call__(self, obj) 309 method = get_real_method(obj, self.print_method) 310 if method is not None: --> 311 return method() 312 return None 313 else: /home/joris/scipy/pandas/pandas/formats/style.py in _repr_html_(self) 190 def _repr_html_(self): 191 """Hooks into Jupyter notebook rich display system.""" --> 192 return self.render() 193 194 def _translate(self): /home/joris/scipy/pandas/pandas/formats/style.py in render(self) 423 if any(any(y) for y in x['props'])] 424 d['cellstyle'] = trimmed --> 425 return self.template.render(**d) 426 427 def _update_ctx(self, attrs): /home/joris/miniconda3/envs/docs/lib/python2.7/site-packages/jinja2/environment.pyc in render(self, *args, **kwargs) 987 except Exception: 988 exc_info = sys.exc_info() --> 989 return self.environment.handle_exception(exc_info, True) 990 991 def stream(self, *args, **kwargs): /home/joris/miniconda3/envs/docs/lib/python2.7/site-packages/jinja2/environment.pyc in handle_exception(self, exc_info, rendered, source_hint) 752 self.exception_handler(traceback) 753 exc_type, exc_value, tb = traceback.standard_exc_info --> 754 reraise(exc_type, exc_value, tb) 755 756 def join_path(self, template, parent): <template> in top-level template code() UnicodeDecodeError: 'ascii' codec can't decode byte 0xc2 in position 0: ordinal not in range(128)
<pandas.formats.style.Styler at 0x7fa8ba59bf50>
Builtin Styles¶
Finally, we expect certain styling functions to be common enough that we've included a few "built-in" to the Styler
, so you don't have to write them yourself.
df.style.highlight_null(null_color='red')
A | B | C | D | E | |
---|---|---|---|---|---|
0 | 1 | 1.32921 | nan | -0.31628 | -0.99081 |
1 | 2 | -1.07082 | -1.43871 | 0.564417 | 0.295722 |
2 | 3 | -1.6264 | 0.219565 | 0.678805 | 1.88927 |
3 | 4 | 0.961538 | 0.104011 | -0.481165 | 0.850229 |
4 | 5 | 1.45342 | 1.05774 | 0.165562 | 0.515018 |
5 | 6 | -1.33694 | 0.562861 | 1.39285 | -0.063328 |
6 | 7 | 0.121668 | 1.2076 | -0.00204021 | 1.6278 |
7 | 8 | 0.354493 | 1.03753 | -0.385684 | 0.519818 |
8 | 9 | 1.68658 | -1.32596 | 1.42898 | -2.08935 |
9 | 10 | -0.12982 | 0.631523 | -0.586538 | 0.29072 |
You can create "heatmaps" with the background_gradient
method. These require matplotlib, and we'll use Seaborn to get a nice colormap.
import seaborn as sns
cm = sns.light_palette("green", as_cmap=True)
s = df.style.background_gradient(cmap=cm)
s
/home/joris/miniconda3/envs/docs/lib/python2.7/site-packages/IPython/html.py:14: ShimWarning: The `IPython.html` package has been deprecated. You should import from `notebook` instead. `IPython.html.widgets` has moved to `ipywidgets`. "`IPython.html.widgets` has moved to `ipywidgets`.", ShimWarning) /home/joris/miniconda3/envs/docs/lib/python2.7/site-packages/matplotlib/colors.py:581: RuntimeWarning: invalid value encountered in less cbook._putmask(xa, xa < 0.0, -1)
A | B | C | D | E | |
---|---|---|---|---|---|
0 | 1 | 1.32921 | nan | -0.31628 | -0.99081 |
1 | 2 | -1.07082 | -1.43871 | 0.564417 | 0.295722 |
2 | 3 | -1.6264 | 0.219565 | 0.678805 | 1.88927 |
3 | 4 | 0.961538 | 0.104011 | -0.481165 | 0.850229 |
4 | 5 | 1.45342 | 1.05774 | 0.165562 | 0.515018 |
5 | 6 | -1.33694 | 0.562861 | 1.39285 | -0.063328 |
6 | 7 | 0.121668 | 1.2076 | -0.00204021 | 1.6278 |
7 | 8 | 0.354493 | 1.03753 | -0.385684 | 0.519818 |
8 | 9 | 1.68658 | -1.32596 | 1.42898 | -2.08935 |
9 | 10 | -0.12982 | 0.631523 | -0.586538 | 0.29072 |
Styler.background_gradient
takes the keyword arguments low
and high
. Roughly speaking these extend the range of your data by low
and high
percent so that when we convert the colors, the colormap's entire range isn't used. This is useful so that you can actually read the text still.
# Uses the full color range
df.loc[:4].style.background_gradient(cmap='viridis')
A | B | C | D | E | |
---|---|---|---|---|---|
0 | 1 | 1.32921 | nan | -0.31628 | -0.99081 |
1 | 2 | -1.07082 | -1.43871 | 0.564417 | 0.295722 |
2 | 3 | -1.6264 | 0.219565 | 0.678805 | 1.88927 |
3 | 4 | 0.961538 | 0.104011 | -0.481165 | 0.850229 |
4 | 5 | 1.45342 | 1.05774 | 0.165562 | 0.515018 |
# Compreess the color range
(df.loc[:4]
.style
.background_gradient(cmap='viridis', low=.5, high=0)
.highlight_null('red'))
A | B | C | D | E | |
---|---|---|---|---|---|
0 | 1 | 1.32921 | nan | -0.31628 | -0.99081 |
1 | 2 | -1.07082 | -1.43871 | 0.564417 | 0.295722 |
2 | 3 | -1.6264 | 0.219565 | 0.678805 | 1.88927 |
3 | 4 | 0.961538 | 0.104011 | -0.481165 | 0.850229 |
4 | 5 | 1.45342 | 1.05774 | 0.165562 | 0.515018 |
You can include "bar charts" in your DataFrame.
df.style.bar(subset=['A', 'B'], color='#d65f5f')
A | B | C | D | E | |
---|---|---|---|---|---|
0 | 1 | 1.32921 | nan | -0.31628 | -0.99081 |
1 | 2 | -1.07082 | -1.43871 | 0.564417 | 0.295722 |
2 | 3 | -1.6264 | 0.219565 | 0.678805 | 1.88927 |
3 | 4 | 0.961538 | 0.104011 | -0.481165 | 0.850229 |
4 | 5 | 1.45342 | 1.05774 | 0.165562 | 0.515018 |
5 | 6 | -1.33694 | 0.562861 | 1.39285 | -0.063328 |
6 | 7 | 0.121668 | 1.2076 | -0.00204021 | 1.6278 |
7 | 8 | 0.354493 | 1.03753 | -0.385684 | 0.519818 |
8 | 9 | 1.68658 | -1.32596 | 1.42898 | -2.08935 |
9 | 10 | -0.12982 | 0.631523 | -0.586538 | 0.29072 |
There's also .highlight_min
and .highlight_max
.
df.style.highlight_max(axis=0)
A | B | C | D | E | |
---|---|---|---|---|---|
0 | 1 | 1.32921 | nan | -0.31628 | -0.99081 |
1 | 2 | -1.07082 | -1.43871 | 0.564417 | 0.295722 |
2 | 3 | -1.6264 | 0.219565 | 0.678805 | 1.88927 |
3 | 4 | 0.961538 | 0.104011 | -0.481165 | 0.850229 |
4 | 5 | 1.45342 | 1.05774 | 0.165562 | 0.515018 |
5 | 6 | -1.33694 | 0.562861 | 1.39285 | -0.063328 |
6 | 7 | 0.121668 | 1.2076 | -0.00204021 | 1.6278 |
7 | 8 | 0.354493 | 1.03753 | -0.385684 | 0.519818 |
8 | 9 | 1.68658 | -1.32596 | 1.42898 | -2.08935 |
9 | 10 | -0.12982 | 0.631523 | -0.586538 | 0.29072 |
df.style.highlight_min(axis=0)
A | B | C | D | E | |
---|---|---|---|---|---|
0 | 1 | 1.32921 | nan | -0.31628 | -0.99081 |
1 | 2 | -1.07082 | -1.43871 | 0.564417 | 0.295722 |
2 | 3 | -1.6264 | 0.219565 | 0.678805 | 1.88927 |
3 | 4 | 0.961538 | 0.104011 | -0.481165 | 0.850229 |
4 | 5 | 1.45342 | 1.05774 | 0.165562 | 0.515018 |
5 | 6 | -1.33694 | 0.562861 | 1.39285 | -0.063328 |
6 | 7 | 0.121668 | 1.2076 | -0.00204021 | 1.6278 |
7 | 8 | 0.354493 | 1.03753 | -0.385684 | 0.519818 |
8 | 9 | 1.68658 | -1.32596 | 1.42898 | -2.08935 |
9 | 10 | -0.12982 | 0.631523 | -0.586538 | 0.29072 |
Use Styler.set_properties
when the style doesn't actually depend on the values.
df.style.set_properties(**{'background-color': 'black',
'color': 'lawngreen',
'border-color': 'white'})
A | B | C | D | E | |
---|---|---|---|---|---|
0 | 1 | 1.32921 | nan | -0.31628 | -0.99081 |
1 | 2 | -1.07082 | -1.43871 | 0.564417 | 0.295722 |
2 | 3 | -1.6264 | 0.219565 | 0.678805 | 1.88927 |
3 | 4 | 0.961538 | 0.104011 | -0.481165 | 0.850229 |
4 | 5 | 1.45342 | 1.05774 | 0.165562 | 0.515018 |
5 | 6 | -1.33694 | 0.562861 | 1.39285 | -0.063328 |
6 | 7 | 0.121668 | 1.2076 | -0.00204021 | 1.6278 |
7 | 8 | 0.354493 | 1.03753 | -0.385684 | 0.519818 |
8 | 9 | 1.68658 | -1.32596 | 1.42898 | -2.08935 |
9 | 10 | -0.12982 | 0.631523 | -0.586538 | 0.29072 |
Sharing Styles¶
Say you have a lovely style built up for a DataFrame, and now you want to apply the same style to a second DataFrame. Export the style with df1.style.export
, and import it on the second DataFrame with df1.style.set
df2 = -df
style1 = df.style.applymap(color_negative_red)
style1
A | B | C | D | E | |
---|---|---|---|---|---|
0 | 1 | 1.32921 | nan | -0.31628 | -0.99081 |
1 | 2 | -1.07082 | -1.43871 | 0.564417 | 0.295722 |
2 | 3 | -1.6264 | 0.219565 | 0.678805 | 1.88927 |
3 | 4 | 0.961538 | 0.104011 | -0.481165 | 0.850229 |
4 | 5 | 1.45342 | 1.05774 | 0.165562 | 0.515018 |
5 | 6 | -1.33694 | 0.562861 | 1.39285 | -0.063328 |
6 | 7 | 0.121668 | 1.2076 | -0.00204021 | 1.6278 |
7 | 8 | 0.354493 | 1.03753 | -0.385684 | 0.519818 |
8 | 9 | 1.68658 | -1.32596 | 1.42898 | -2.08935 |
9 | 10 | -0.12982 | 0.631523 | -0.586538 | 0.29072 |
style2 = df2.style
style2.use(style1.export())
style2
A | B | C | D | E | |
---|---|---|---|---|---|
0 | -1 | -1.32921 | nan | 0.31628 | 0.99081 |
1 | -2 | 1.07082 | 1.43871 | -0.564417 | -0.295722 |
2 | -3 | 1.6264 | -0.219565 | -0.678805 | -1.88927 |
3 | -4 | -0.961538 | -0.104011 | 0.481165 | -0.850229 |
4 | -5 | -1.45342 | -1.05774 | -0.165562 | -0.515018 |
5 | -6 | 1.33694 | -0.562861 | -1.39285 | 0.063328 |
6 | -7 | -0.121668 | -1.2076 | 0.00204021 | -1.6278 |
7 | -8 | -0.354493 | -1.03753 | 0.385684 | -0.519818 |
8 | -9 | -1.68658 | 1.32596 | -1.42898 | 2.08935 |
9 | -10 | 0.12982 | -0.631523 | 0.586538 | -0.29072 |
Notice that you're able share the styles even though they're data aware. The styles are re-evaluated on the new DataFrame they've been use
d upon.
Other options¶
You've seen a few methods for data-driven styling.
Styler
also provides a few other options for styles that don't depend on the data.
- precision
- captions
- table-wide styles
Each of these can be specified in two ways:
- A keyword argument to
pandas.core.Styler
- A call to one of the
.set_
methods, e.g..set_caption
The best method to use depends on the context. Use the Styler
constructor when building many styled DataFrames that should all share the same properties. For interactive use, the.set_
methods are more convenient.
Precision¶
You can control the precision of floats using pandas' regular display.precision
option.
with pd.option_context('display.precision', 2):
html = (df.style
.applymap(color_negative_red)
.apply(highlight_max))
html
A | B | C | D | E | |
---|---|---|---|---|---|
0 | 1 | 1.3 | nan | -0.32 | -0.99 |
1 | 2 | -1.1 | -1.4 | 0.56 | 0.3 |
2 | 3 | -1.6 | 0.22 | 0.68 | 1.9 |
3 | 4 | 0.96 | 0.1 | -0.48 | 0.85 |
4 | 5 | 1.5 | 1.1 | 0.17 | 0.52 |
5 | 6 | -1.3 | 0.56 | 1.4 | -0.063 |
6 | 7 | 0.12 | 1.2 | -0.002 | 1.6 |
7 | 8 | 0.35 | 1 | -0.39 | 0.52 |
8 | 9 | 1.7 | -1.3 | 1.4 | -2.1 |
9 | 10 | -0.13 | 0.63 | -0.59 | 0.29 |
Or through a set_precision
method.
df.style\
.applymap(color_negative_red)\
.apply(highlight_max)\
.set_precision(2)
A | B | C | D | E | |
---|---|---|---|---|---|
0 | 1 | 1.3 | nan | -0.32 | -0.99 |
1 | 2 | -1.1 | -1.4 | 0.56 | 0.3 |
2 | 3 | -1.6 | 0.22 | 0.68 | 1.9 |
3 | 4 | 0.96 | 0.1 | -0.48 | 0.85 |
4 | 5 | 1.5 | 1.1 | 0.17 | 0.52 |
5 | 6 | -1.3 | 0.56 | 1.4 | -0.063 |
6 | 7 | 0.12 | 1.2 | -0.002 | 1.6 |
7 | 8 | 0.35 | 1 | -0.39 | 0.52 |
8 | 9 | 1.7 | -1.3 | 1.4 | -2.1 |
9 | 10 | -0.13 | 0.63 | -0.59 | 0.29 |
Setting the precision only affects the printed number; the full-precision values are always passed to your style functions. You can always use df.round(2).style
if you'd prefer to round from the start.
Captions¶
Regular table captions can be added in a few ways.
df.style.set_caption('Colormaps, with a caption.')\
.background_gradient(cmap=cm)
A | B | C | D | E | |
---|---|---|---|---|---|
0 | 1 | 1.32921 | nan | -0.31628 | -0.99081 |
1 | 2 | -1.07082 | -1.43871 | 0.564417 | 0.295722 |
2 | 3 | -1.6264 | 0.219565 | 0.678805 | 1.88927 |
3 | 4 | 0.961538 | 0.104011 | -0.481165 | 0.850229 |
4 | 5 | 1.45342 | 1.05774 | 0.165562 | 0.515018 |
5 | 6 | -1.33694 | 0.562861 | 1.39285 | -0.063328 |
6 | 7 | 0.121668 | 1.2076 | -0.00204021 | 1.6278 |
7 | 8 | 0.354493 | 1.03753 | -0.385684 | 0.519818 |
8 | 9 | 1.68658 | -1.32596 | 1.42898 | -2.08935 |
9 | 10 | -0.12982 | 0.631523 | -0.586538 | 0.29072 |
Table Styles¶
The next option you have are "table styles".
These are styles that apply to the table as a whole, but don't look at the data.
Certain sytlings, including pseudo-selectors like :hover
can only be used this way.
from IPython.display import HTML
def hover(hover_color="#ffff99"):
return dict(selector="tr:hover",
props=[("background-color", "%s" % hover_color)])
styles = [
hover(),
dict(selector="th", props=[("font-size", "150%"),
("text-align", "center")]),
dict(selector="caption", props=[("caption-side", "bottom")])
]
html = (df.style.set_table_styles(styles)
.set_caption("Hover to highlight."))
html
A | B | C | D | E | |
---|---|---|---|---|---|
0 | 1 | 1.32921 | nan | -0.31628 | -0.99081 |
1 | 2 | -1.07082 | -1.43871 | 0.564417 | 0.295722 |
2 | 3 | -1.6264 | 0.219565 | 0.678805 | 1.88927 |
3 | 4 | 0.961538 | 0.104011 | -0.481165 | 0.850229 |
4 | 5 | 1.45342 | 1.05774 | 0.165562 | 0.515018 |
5 | 6 | -1.33694 | 0.562861 | 1.39285 | -0.063328 |
6 | 7 | 0.121668 | 1.2076 | -0.00204021 | 1.6278 |
7 | 8 | 0.354493 | 1.03753 | -0.385684 | 0.519818 |
8 | 9 | 1.68658 | -1.32596 | 1.42898 | -2.08935 |
9 | 10 | -0.12982 | 0.631523 | -0.586538 | 0.29072 |
table_styles
should be a list of dictionaries.
Each dictionary should have the selector
and props
keys.
The value for selector
should be a valid CSS selector.
Recall that all the styles are already attached to an id
, unique to
each Styler
. This selector is in addition to that id
.
The value for props
should be a list of tuples of ('attribute', 'value')
.
table_styles
are extremely flexible, but not as fun to type out by hand.
We hope to collect some useful ones either in pandas, or preferable in a new package that builds on top the tools here.
CSS Classes¶
Certain CSS classes are attached to cells.
- Index and Column names include
index_name
andlevel<k>
wherek
is its level in a MultiIndex - Index label cells include
row_heading
row<n>
wheren
is the numeric position of the rowlevel<k>
wherek
is the level in a MultiIndex
- Column label cells include
col_heading
col<n>
wheren
is the numeric position of the columnlevel<k>
wherek
is the level in a MultiIndex
- Blank cells include
blank
- Data cells include
data
Limitations¶
- DataFrame only
(use Series.to_frame().style)
- The index and columns must be unique
- No large repr, and performance isn't great; this is intended for summary DataFrames
- You can only style the values, not the index or columns
- You can only apply styles, you can't insert new HTML entities
Some of these will be addressed in the future.
Terms¶
- Style function: a function that's passed into
Styler.apply
orStyler.applymap
and returns values like'css attribute: value'
- Builtin style functions: style functions that are methods on
Styler
- table style: a dictionary with the two keys
selector
andprops
.selector
is the CSS selector thatprops
will apply to.props
is a list of(attribute, value)
tuples. A list of table styles passed intoStyler
.
Fun stuff¶
Here are a few interesting examples.
Styler
interacts pretty well with widgets. If you're viewing this online instead of running the notebook yourself, you're missing out on interactively adjusting the color palette.
from IPython.html import widgets
@widgets.interact
def f(h_neg=(0, 359, 1), h_pos=(0, 359), s=(0., 99.9), l=(0., 99.9)):
return df.style.background_gradient(
cmap=sns.palettes.diverging_palette(h_neg=h_neg, h_pos=h_pos, s=s, l=l,
as_cmap=True)
)
--------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython-input-30-62e68348ecde> in <module>() 1 from IPython.html import widgets ----> 2 @widgets.interact 3 def f(h_neg=(0, 359, 1), h_pos=(0, 359), s=(0., 99.9), l=(0., 99.9)): 4 return df.style.background_gradient( 5 cmap=sns.palettes.diverging_palette(h_neg=h_neg, h_pos=h_pos, s=s, l=l, /home/joris/miniconda3/envs/docs/lib/python2.7/site-packages/IPython/utils/shimmodule.pyc in __getattr__(self, key) 90 return import_item(name) 91 except ImportError: ---> 92 raise AttributeError(key) AttributeError: interact
def magnify():
return [dict(selector="th",
props=[("font-size", "4pt")]),
dict(selector="td",
props=[('padding', "0em 0em")]),
dict(selector="th:hover",
props=[("font-size", "12pt")]),
dict(selector="tr:hover td:hover",
props=[('max-width', '200px'),
('font-size', '12pt')])
]
np.random.seed(25)
cmap = cmap=sns.diverging_palette(5, 250, as_cmap=True)
df = pd.DataFrame(np.random.randn(20, 25)).cumsum()
df.style.background_gradient(cmap, axis=1)\
.set_properties(**{'max-width': '80px', 'font-size': '1pt'})\
.set_caption("Hover to magify")\
.set_precision(2)\
.set_table_styles(magnify())
0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | 0.23 | 1 | -0.84 | -0.59 | -0.96 | -0.22 | -0.62 | 1.8 | -2.1 | 0.87 | -0.92 | -0.23 | 2.2 | -1.3 | 0.076 | -1.2 | 1.2 | -1 | 1.1 | -0.42 | 2.3 | -2.6 | 2.8 | 0.68 | -1.6 |
1 | -1.7 | 1.6 | -1.1 | -1.1 | 1 | 0.0037 | -2.5 | 3.4 | -1.7 | 1.3 | -0.52 | -0.015 | 1.5 | -1.1 | -1.9 | -1.1 | -0.68 | -0.81 | 0.35 | -0.055 | 1.8 | -2.8 | 2.3 | 0.78 | 0.44 |
2 | -0.65 | 3.2 | -1.8 | 0.52 | 2.2 | -0.37 | -3 | 3.7 | -1.9 | 2.5 | 0.21 | -0.24 | -0.1 | -0.78 | -3 | -0.82 | -0.21 | -0.23 | 0.86 | -0.68 | 1.4 | -4.9 | 3 | 1.9 | 0.61 |
3 | -1.6 | 3.7 | -2.3 | 0.43 | 4.2 | -0.43 | -3.9 | 4.2 | -2.1 | 1.1 | 0.12 | 0.6 | -0.89 | 0.27 | -3.7 | -2.7 | -0.31 | -1.6 | 1.4 | -1.8 | 0.91 | -5.8 | 2.8 | 2.1 | 0.28 |
4 | -3.3 | 4.5 | -1.9 | -1.7 | 5.2 | -1 | -3.8 | 4.7 | -0.72 | 1.1 | -0.18 | 0.83 | -0.22 | -1.1 | -4.3 | -2.9 | -0.97 | -1.8 | 1.5 | -1.8 | 2.2 | -6.3 | 3.3 | 2.5 | 2.1 |
5 | -0.84 | 4.2 | -1.7 | -2 | 5.3 | -0.99 | -4.1 | 3.9 | -1.1 | -0.94 | 1.2 | 0.087 | -1.8 | -0.11 | -4.5 | -0.85 | -2.1 | -1.4 | 0.8 | -1.6 | 1.5 | -6.5 | 2.8 | 2.1 | 3.8 |
6 | -0.74 | 5.4 | -2.1 | -1.1 | 4.2 | -1.8 | -3.2 | 3.8 | -3.2 | -1.2 | 0.34 | 0.57 | -1.8 | 0.54 | -4.4 | -1.8 | -4 | -2.6 | -0.2 | -4.7 | 1.9 | -8.5 | 3.3 | 2.5 | 5.8 |
7 | -0.44 | 4.7 | -2.3 | -0.21 | 5.9 | -2.6 | -1.8 | 5.5 | -4.5 | -3.2 | -1.7 | 0.18 | 0.11 | 0.036 | -6 | -0.45 | -6.2 | -3.9 | 0.71 | -3.9 | 0.67 | -7.3 | 3 | 3.4 | 6.7 |
8 | 0.92 | 5.8 | -3.3 | -0.65 | 6 | -3.2 | -1.8 | 5.6 | -3.5 | -1.3 | -1.6 | 0.82 | -2.4 | -0.4 | -6.1 | -0.52 | -6.6 | -3.5 | -0.043 | -4.6 | 0.51 | -5.8 | 3.2 | 2.4 | 5.1 |
9 | 0.38 | 5.5 | -4.5 | -0.8 | 7.1 | -2.6 | -0.44 | 5.3 | -2 | -0.33 | -0.8 | 0.26 | -3.4 | -0.82 | -6.1 | -2.6 | -8.5 | -4.5 | 0.41 | -4.7 | 1.9 | -6.9 | 2.1 | 3 | 5.2 |
10 | 2.1 | 5.8 | -3.9 | -0.98 | 7.8 | -2.5 | -0.59 | 5.6 | -2.2 | -0.71 | -0.46 | 1.8 | -2.8 | 0.48 | -6 | -3.4 | -7.8 | -5.5 | -0.7 | -4.6 | -0.52 | -7.7 | 1.5 | 5 | 5.8 |
11 | 1.9 | 4.5 | -2.2 | -1.4 | 5.9 | -0.49 | 0.017 | 5.8 | -1 | -0.6 | 0.49 | 2 | -1.5 | 1.9 | -5.9 | -4.5 | -8.2 | -3.4 | -2.2 | -4.3 | -1.2 | -7.9 | 1.4 | 5.3 | 5.8 |
12 | 3.2 | 4.2 | -3.1 | -2.3 | 5.9 | -2.6 | 0.33 | 6.7 | -2.8 | -0.2 | 1.9 | 2.6 | -1.5 | 0.75 | -5.3 | -4.5 | -7.6 | -2.9 | -2.2 | -4.8 | -1.1 | -9 | 2.1 | 6.4 | 5.6 |
13 | 2.3 | 4.5 | -3.9 | -2 | 6.8 | -3.3 | -2.2 | 8 | -2.6 | -0.8 | 0.71 | 2.3 | -0.16 | -0.46 | -5.1 | -3.8 | -7.6 | -4 | 0.33 | -3.7 | -1 | -8.7 | 2.5 | 5.9 | 6.7 |
14 | 3.8 | 4.3 | -3.9 | -1.6 | 6.2 | -3.2 | -1.5 | 5.6 | -2.9 | -0.33 | -0.97 | 1.7 | 3.6 | 0.29 | -4.2 | -4.1 | -6.7 | -4.5 | -2.2 | -2.4 | -1.6 | -9.4 | 3.4 | 6.1 | 7.5 |
15 | 5.6 | 5.3 | -4 | -2.3 | 5.9 | -3.3 | -1 | 5.7 | -3.1 | -0.33 | -1.2 | 2.2 | 4.2 | 1 | -3.2 | -4.3 | -5.7 | -4.4 | -2.3 | -1.4 | -1.2 | -11 | 2.6 | 6.7 | 5.9 |
16 | 4.1 | 4.3 | -2.4 | -3.3 | 6 | -2.5 | -0.47 | 5.3 | -4.8 | 1.6 | 0.23 | 0.099 | 5.8 | 1.8 | -3.1 | -3.9 | -5.5 | -3 | -2.1 | -1.1 | -0.56 | -13 | 2.1 | 6.2 | 4.9 |
17 | 5.6 | 4.6 | -3.5 | -3.8 | 6.6 | -2.6 | -0.75 | 6.6 | -4.8 | 3.6 | -0.29 | 0.56 | 5.8 | 2 | -2.3 | -2.3 | -5 | -3.2 | -3.1 | -2.4 | 0.84 | -13 | 3.6 | 7.4 | 4.7 |
18 | 6 | 5.8 | -2.8 | -4.2 | 7.1 | -3.3 | -1.2 | 7.9 | -4.9 | 1.4 | -0.63 | 0.35 | 7.5 | 0.87 | -1.5 | -2.1 | -4.2 | -2.5 | -2.5 | -2.9 | 1.9 | -9.7 | 3.4 | 7.1 | 4.4 |
19 | 4 | 6.2 | -4.1 | -4.1 | 7.2 | -4.1 | -1.5 | 6.5 | -5.2 | -0.24 | 0.0072 | 1.2 | 6.4 | -2 | -2.6 | -1.7 | -5.2 | -3.3 | -2.9 | -1.7 | 1.6 | -11 | 2.8 | 7.5 | 3.9 |
Extensibility¶
The core of pandas is, and will remain, its "high-performance, easy-to-use data structures".
With that in mind, we hope that DataFrame.style
accomplishes two goals
- Provide an API that is pleasing to use interactively and is "good enough" for many tasks
- Provide the foundations for dedicated libraries to build on
If you build a great library on top of this, let us know and we'll link to it.
Subclassing¶
This section contains a bit of information about the implementation of Styler
.
Since the feature is so new all of this is subject to change, even more so than the end-use API.
As users apply styles (via .apply
, .applymap
or one of the builtins), we don't actually calculate anything.
Instead, we append functions and arguments to a list self._todo
.
When asked (typically in .render
we'll walk through the list and execute each function (this is in self._compute()
.
These functions update an internal defaultdict(list)
, self.ctx
which maps DataFrame row / column positions to CSS attribute, value pairs.
We take the extra step through self._todo
so that we can export styles and set them on other Styler
s.
Rendering uses Jinja templates.
The .translate
method takes self.ctx
and builds another dictionary ready to be passed into Styler.template.render
, the Jinja template.
Alternate templates¶
We've used Jinja templates to build up the HTML.
The template is stored as a class variable Styler.template.
. Subclasses can override that.
class CustomStyle(Styler):
template = Template("""...""")