💙
AttributeError: module 'seaborn' has no attribute 'lineplot'
seabornの使用を試みた際に以下のエラーが出現
AttributeError: module 'seaborn' has no attribute 'lineplot'
seabornのバージョンが古いと発生するらしい.
現在のバージョンを確認してみると0.8.1だった.
print(sns.__version__)
#0.8.1
lineplotはバージョン0.9.0以上から使用可能らしい
Jupyter上でseabornを更新
!pip install -U seaborn
Discussion