Learn practical skills, build real-world projects, and advance your career
import seaborn as sns
sns.set_style("darkgrid")

Box Plot

A box plot shows the distribution of data along a single axis, using a "box" and "whiskers".

tips = sns.load_dataset('tips')
sns.barplot(tips.day, tips.total_bill,
    hue=tips.sex);
sns.set_style('white')
Notebook Image
!pip install jovian --upgrade
Collecting jovian Using cached jovian-0.2.10-py2.py3-none-any.whl (70 kB) Processing /Users/aakashns/Library/Caches/pip/wheels/5e/03/1e/e1e954795d6f35dfc7b637fe2277bff021303bd9570ecea653/PyYAML-5.3.1-cp37-cp37m-macosx_10_9_x86_64.whl Processing /Users/aakashns/Library/Caches/pip/wheels/2a/80/9b/015026567c29fdffe31d91edbe7ba1b17728db79194fca1f21/uuid-1.30-cp37-none-any.whl Collecting click Downloading click-7.1.2-py2.py3-none-any.whl (82 kB) |████████████████████████████████| 82 kB 88 kB/s eta 0:00:011 Collecting requests Using cached requests-2.23.0-py2.py3-none-any.whl (58 kB) Requirement already satisfied, skipping upgrade: certifi>=2017.4.17 in /Users/aakashns/miniconda3/envs/visual-diffs/lib/python3.7/site-packages (from requests->jovian) (2020.4.5.1) Collecting urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 Using cached urllib3-1.25.9-py2.py3-none-any.whl (126 kB) Collecting idna<3,>=2.5 Using cached idna-2.9-py2.py3-none-any.whl (58 kB) Collecting chardet<4,>=3.0.2 Using cached chardet-3.0.4-py2.py3-none-any.whl (133 kB) Installing collected packages: pyyaml, uuid, click, urllib3, idna, chardet, requests, jovian Successfully installed chardet-3.0.4 click-7.1.2 idna-2.9 jovian-0.2.10 pyyaml-5.3.1 requests-2.23.0 urllib3-1.25.9 uuid-1.30
import jovian