I am trying to play around with Seaborn on Spyder (installed as part of Anaconda).
import seaborn as sb
returns:
ImportError: No module named seaborn This despite the Anaconda website listing seaborn as one of the default packages and the seaborn site saying that Anaconda is the easiest way to get the package.
What am I doing wrong?
Usually Seaborn is imported as 'sns' so if you use that, that will be much easier for you initially (because all the code examples use that), and for others later when you share your code.
Have fun with Seaborn, it is an amazing package.
Since version 4.3.0 dated 2017-01-31, Anaconda comes with seaborn installed by default. Try upgrading your Anaconda installation.
Just do conda install seaborn. If its installed it will updated it.
For those using GUI (navigator), select Environments > root. On the right is a list of packages - installed, not installed, etc.
Select "not installed", search for seaborn. If it appears, then click the row, and select Apply button at bottom of that page.
If it doesn't appear, then something else is wrong with your install.
Hope that helps.