Issues with seaborn clustering Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!ipython reads wrong python versionimport matplotlib.pyplot gives ImportError: dlopen(…) Library not loaded libpng15.15.dylibSeaborn 'pairplot' function ends with an error “ 'AxesSubplot' object has no attribute '_make_twin_axes' ”Can't access conda packages from pythonIssues running Matplotlib/PyQt- ErrorNo outlines on bins of Matplotlib histograms or Seaborn distplotsMatplotlib not foundModule Seaborn has no attribute '<any graph>'How to specify package path? (Matplotlib requires six>=1.10; you have %s" % six.__version__))No Module named 'Matplotlib' error in Python 3.6
Do wooden building fires get hotter than 600°C?
8 Prisoners wearing hats
Is it cost-effective to upgrade an old-ish Giant Escape R3 commuter bike with entry-level branded parts (wheels, drivetrain)?
Is it ethical to give a final exam after the professor has quit before teaching the remaining chapters of the course?
Wu formula for manifolds with boundary
How do I find out the mythology and history of my Fortress?
How to Make a Beautiful Stacked 3D Plot
When the Haste spell ends on a creature, do attackers have advantage against that creature?
What is this building called? (It was built in 2002)
Fundamental Solution of the Pell Equation
What is homebrew?
Is grep documentation wrong?
Why are both D and D# fitting into my E minor key?
How do I stop a creek from eroding my steep embankment?
Why are the trig functions versine, haversine, exsecant, etc, rarely used in modern mathematics?
Can anything be seen from the center of the Boötes void? How dark would it be?
Extracting terms with certain heads in a function
Using audio cues to encourage good posture
If my PI received research grants from a company to be able to pay my postdoc salary, did I have a potential conflict interest too?
Is it fair for a professor to grade us on the possession of past papers?
Why do we bend a book to keep it straight?
Is it common practice to audition new musicians 1-2-1 before rehearsing with the entire band?
What do you call the main part of a joke?
Why do the resolve message appear first?
Issues with seaborn clustering
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
Data science time! April 2019 and salary with experience
The Ask Question Wizard is Live!ipython reads wrong python versionimport matplotlib.pyplot gives ImportError: dlopen(…) Library not loaded libpng15.15.dylibSeaborn 'pairplot' function ends with an error “ 'AxesSubplot' object has no attribute '_make_twin_axes' ”Can't access conda packages from pythonIssues running Matplotlib/PyQt- ErrorNo outlines on bins of Matplotlib histograms or Seaborn distplotsMatplotlib not foundModule Seaborn has no attribute '<any graph>'How to specify package path? (Matplotlib requires six>=1.10; you have %s" % six.__version__))No Module named 'Matplotlib' error in Python 3.6
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
Hi I have used seaborn before, but lately for somereason I can no longer use sns.clustermap. I have even gone back to the webpage and tried using their sample code pasted below, but I keep getting 'AttributeError: Unknown property axisbg ' .
I have tried reinstalling Matplotlib and seaborn and even tried conda install _library_Matplotlib and conda install _library_seaborn , but nothing has worked. I even tried to change my python version.
python version 3.6.6
matplotlib Version 3.0.2
seaborn version 0.7.1
import seaborn as sns; sns.set(color_codes=True)
iris = sns.load_dataset("iris")
species = iris.pop("species")
g = sns.clustermap(iris)
Error : 'AttributeError: Unknown property axisbg Figure size 720x720 with 0 Axes '
python cluster-computing seaborn
add a comment |
Hi I have used seaborn before, but lately for somereason I can no longer use sns.clustermap. I have even gone back to the webpage and tried using their sample code pasted below, but I keep getting 'AttributeError: Unknown property axisbg ' .
I have tried reinstalling Matplotlib and seaborn and even tried conda install _library_Matplotlib and conda install _library_seaborn , but nothing has worked. I even tried to change my python version.
python version 3.6.6
matplotlib Version 3.0.2
seaborn version 0.7.1
import seaborn as sns; sns.set(color_codes=True)
iris = sns.load_dataset("iris")
species = iris.pop("species")
g = sns.clustermap(iris)
Error : 'AttributeError: Unknown property axisbg Figure size 720x720 with 0 Axes '
python cluster-computing seaborn
This is a compatibility problem between the matplotlib version (which is pretty new) and the seaborn version (which is rather old). You either need to update seaborn, or downgrade matplotlib. If using conda, updating seaborn should be as easy asconda install seaborn==0.9
– ImportanceOfBeingErnest
Mar 8 at 19:07
add a comment |
Hi I have used seaborn before, but lately for somereason I can no longer use sns.clustermap. I have even gone back to the webpage and tried using their sample code pasted below, but I keep getting 'AttributeError: Unknown property axisbg ' .
I have tried reinstalling Matplotlib and seaborn and even tried conda install _library_Matplotlib and conda install _library_seaborn , but nothing has worked. I even tried to change my python version.
python version 3.6.6
matplotlib Version 3.0.2
seaborn version 0.7.1
import seaborn as sns; sns.set(color_codes=True)
iris = sns.load_dataset("iris")
species = iris.pop("species")
g = sns.clustermap(iris)
Error : 'AttributeError: Unknown property axisbg Figure size 720x720 with 0 Axes '
python cluster-computing seaborn
Hi I have used seaborn before, but lately for somereason I can no longer use sns.clustermap. I have even gone back to the webpage and tried using their sample code pasted below, but I keep getting 'AttributeError: Unknown property axisbg ' .
I have tried reinstalling Matplotlib and seaborn and even tried conda install _library_Matplotlib and conda install _library_seaborn , but nothing has worked. I even tried to change my python version.
python version 3.6.6
matplotlib Version 3.0.2
seaborn version 0.7.1
import seaborn as sns; sns.set(color_codes=True)
iris = sns.load_dataset("iris")
species = iris.pop("species")
g = sns.clustermap(iris)
Error : 'AttributeError: Unknown property axisbg Figure size 720x720 with 0 Axes '
python cluster-computing seaborn
python cluster-computing seaborn
asked Mar 8 at 18:49
MichaelMichael
246
246
This is a compatibility problem between the matplotlib version (which is pretty new) and the seaborn version (which is rather old). You either need to update seaborn, or downgrade matplotlib. If using conda, updating seaborn should be as easy asconda install seaborn==0.9
– ImportanceOfBeingErnest
Mar 8 at 19:07
add a comment |
This is a compatibility problem between the matplotlib version (which is pretty new) and the seaborn version (which is rather old). You either need to update seaborn, or downgrade matplotlib. If using conda, updating seaborn should be as easy asconda install seaborn==0.9
– ImportanceOfBeingErnest
Mar 8 at 19:07
This is a compatibility problem between the matplotlib version (which is pretty new) and the seaborn version (which is rather old). You either need to update seaborn, or downgrade matplotlib. If using conda, updating seaborn should be as easy as
conda install seaborn==0.9– ImportanceOfBeingErnest
Mar 8 at 19:07
This is a compatibility problem between the matplotlib version (which is pretty new) and the seaborn version (which is rather old). You either need to update seaborn, or downgrade matplotlib. If using conda, updating seaborn should be as easy as
conda install seaborn==0.9– ImportanceOfBeingErnest
Mar 8 at 19:07
add a comment |
1 Answer
1
active
oldest
votes
Working here, Spyder 3.3.1, Python 3.6.6, Qt 5.11.2, PyQt 5.11.3, Seaborn 0.9.0
Run:
pip install seaborn --upgrade
Hi it partially worked but I then got a 'RuntimeError: module compiled against API version 0xc but this version of numpy is 0xb'
– Michael
Mar 8 at 19:19
Nevermind I just reinstalled numpy
– Michael
Mar 8 at 19:24
Looks like versions of dependencies are in conflict, probablynumpyorpandas. (Exactly)
– Rubens_Zimbres
Mar 8 at 19:27
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55069273%2fissues-with-seaborn-clustering%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Working here, Spyder 3.3.1, Python 3.6.6, Qt 5.11.2, PyQt 5.11.3, Seaborn 0.9.0
Run:
pip install seaborn --upgrade
Hi it partially worked but I then got a 'RuntimeError: module compiled against API version 0xc but this version of numpy is 0xb'
– Michael
Mar 8 at 19:19
Nevermind I just reinstalled numpy
– Michael
Mar 8 at 19:24
Looks like versions of dependencies are in conflict, probablynumpyorpandas. (Exactly)
– Rubens_Zimbres
Mar 8 at 19:27
add a comment |
Working here, Spyder 3.3.1, Python 3.6.6, Qt 5.11.2, PyQt 5.11.3, Seaborn 0.9.0
Run:
pip install seaborn --upgrade
Hi it partially worked but I then got a 'RuntimeError: module compiled against API version 0xc but this version of numpy is 0xb'
– Michael
Mar 8 at 19:19
Nevermind I just reinstalled numpy
– Michael
Mar 8 at 19:24
Looks like versions of dependencies are in conflict, probablynumpyorpandas. (Exactly)
– Rubens_Zimbres
Mar 8 at 19:27
add a comment |
Working here, Spyder 3.3.1, Python 3.6.6, Qt 5.11.2, PyQt 5.11.3, Seaborn 0.9.0
Run:
pip install seaborn --upgrade
Working here, Spyder 3.3.1, Python 3.6.6, Qt 5.11.2, PyQt 5.11.3, Seaborn 0.9.0
Run:
pip install seaborn --upgrade
answered Mar 8 at 18:57
Rubens_ZimbresRubens_Zimbres
1,248719
1,248719
Hi it partially worked but I then got a 'RuntimeError: module compiled against API version 0xc but this version of numpy is 0xb'
– Michael
Mar 8 at 19:19
Nevermind I just reinstalled numpy
– Michael
Mar 8 at 19:24
Looks like versions of dependencies are in conflict, probablynumpyorpandas. (Exactly)
– Rubens_Zimbres
Mar 8 at 19:27
add a comment |
Hi it partially worked but I then got a 'RuntimeError: module compiled against API version 0xc but this version of numpy is 0xb'
– Michael
Mar 8 at 19:19
Nevermind I just reinstalled numpy
– Michael
Mar 8 at 19:24
Looks like versions of dependencies are in conflict, probablynumpyorpandas. (Exactly)
– Rubens_Zimbres
Mar 8 at 19:27
Hi it partially worked but I then got a 'RuntimeError: module compiled against API version 0xc but this version of numpy is 0xb'
– Michael
Mar 8 at 19:19
Hi it partially worked but I then got a 'RuntimeError: module compiled against API version 0xc but this version of numpy is 0xb'
– Michael
Mar 8 at 19:19
Nevermind I just reinstalled numpy
– Michael
Mar 8 at 19:24
Nevermind I just reinstalled numpy
– Michael
Mar 8 at 19:24
Looks like versions of dependencies are in conflict, probably
numpy or pandas. (Exactly)– Rubens_Zimbres
Mar 8 at 19:27
Looks like versions of dependencies are in conflict, probably
numpy or pandas. (Exactly)– Rubens_Zimbres
Mar 8 at 19:27
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55069273%2fissues-with-seaborn-clustering%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
This is a compatibility problem between the matplotlib version (which is pretty new) and the seaborn version (which is rather old). You either need to update seaborn, or downgrade matplotlib. If using conda, updating seaborn should be as easy as
conda install seaborn==0.9– ImportanceOfBeingErnest
Mar 8 at 19:07