4

Add CSS to the Jupyter Notebook using Pandas

 3 years ago
source link: https://www.geeksforgeeks.org/add-css-to-the-jupyter-notebook-using-pandas/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client
Add CSS to the Jupyter Notebook using Pandas
Related Articles
Improve Article
Add CSS to the Jupyter Notebook using Pandas
  • Last Updated : 06 Dec, 2019

In Jupyter Notebook, when we print the output table of our data, it shows a very basic table containing the data. But what if we want to customize this default style? In this article, we will see how we can add styles to our output data table.

This is how a default data table looks like in Jupyter Notebook:

import pandas as pd
df = pd.DataFrame({'A':[1, 2, 3, 4, 5, 6, 7, 8], 
'B':[1, 2, 3, 4, 5, 6, 7, 8], 
'C':[1, 2, 3, 4, 5, 6, 7, 8],
'D':[1, 2, 3, 4, 5, 6, 7, 8]})
df.head()

Output:

table16.jpg

Now let’s try to change the style. We can do it by the set_table_styles method of pandas module.

df.style.set_table_styles()

Now we need to pass the ‘selectors’ and ‘props’ as argument to this method, i.e. we need to select the CSS tags of the table (eg: th, td etc) and change the values of their properties (eg: background, font-color, font-family etc).

So, if we need to change the font-family of the text in the data section of the table, we can do it like this:

df.style.set_table_styles(
[{'selector': 'td',
'props': [('font-family', 'Sans-serif')]},
])

Let’s try to add more changes and see the output.

df = pd.DataFrame({'A':[1, 2, 3, 4, 5, 6, 7, 8], 
'B':[1, 2, 3, 4, 5, 6, 7, 8], 
'C':[1, 2, 3, 4, 5, 6, 7, 8],
'D':[1, 2, 3, 4, 5, 6, 7, 8],
'E':[1, 2, 3, 4, 5, 6, 7, 8]})
df.style.set_table_styles(
[
{'selector': 'th',
'props': [('background', '# 606060'), 
('color', 'white'), ]},
{'selector': 'td',
'props': [('color', 'blue')]},
])

Output:

table21.jpg

We can also hide the index column by hide_index() method:

df.style.set_table_styles(
[
{'selector': 'th',
'props': [('background', '# 606060'), 
('color', 'yellow'), ]},
{'selector': 'td',
'props': [('color', 'red')]},
]
).hide_index()

Output:

table32.jpg

 Attention geek! Strengthen your foundations with the Python Programming Foundation Course and learn the basics.  

To begin with, your interview preparations Enhance your Data Structures concepts with the Python DS Course. And to begin with your Machine Learning Journey, join the Machine Learning – Basic Level Course


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK