Seaborn version update

Hi Team,
The seaborn version available in jupyter is very old. I tried below command,

import seaborn as sns
sns.countplot()

I see below error message
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
in
1 import seaborn as sns
2
----> 3 sns.countplot()

AttributeError: module 'seaborn' has no attribute 'countplot'

meaning, countplot is not supported in this version of seaborn.

countplot was introduced in seaborn in v0.6.0 (June 2015) refer : https://seaborn.pydata.org/whatsnew.html#v0-6-0-june-2015

Please update seaborn to latest version.

we need to work on this.