Seaborn Lineplot Module Object Has No Attribute 'Lineplot'

38,306

Solution 1

If you are using conda, you need to install seaborn with the version specified:

conda install -c anaconda seaborn=0.9.0

Once your seaborn 0.9.0 is installed properly, you should be able to use the lineplot function (at least it works on mine).

That way you don't have to go outside of the conda ecosystem and use seaborn with pip.

Solution 2

Lineplot works with update to seaborn 0.9. conda has not yet integrated seaborn 0.9.0 into it's default channel, which is why the update to 0.9 failed on my first go.

Couldn't Update Seaborn via Default Channel but found another way to do it through this answer

Solution 3

As other's said before, you need seaborn version 0.9.0 (or above will work too, I guess). The pip-way of doing this without conda is:

pip install seaborn==0.9.0

My problem was that I had an older version ( 0.8.x) installed, so simply running pip install seaborn doesn't help in that case.

Alternatively, you can directly upgrade to the latest version of seaborn like this:

pip install -U seaborn

Solution 4

Within Jupyter notebook you can run the install without leaving the notebook.

You only have to add the tag "y" to install the package.

!conda install -y -c anaconda seaborn=0.9.0
Share:
38,306
s-monie
Author by

s-monie

Updated on September 11, 2020

Comments

  • s-monie
    s-monie over 3 years

    Using seaborn's documentation code to generate a lineplot returns an AttributeError: 'module' object has no attribute 'lineplot'. I have updated seaborn and reimported the module and tried again, no luck. Did lineplot get retired, or is there something else going on?

    import seaborn as sns; sns.set()
    import matplotlib.pyplot as plt
    fmri = sns.load_dataset("fmri")
    ax = sns.lineplot(x="timepoint", y="signal", data=fmri)