AttributeError: module 'seaborn' has no attribute 'lineplot' - already updated to 0.9.0










-2















I need help with getting lineplot running. I've already updated conda and Seaborn using pip and conda.



Any suggestions on how to resolve this? I am using Jupyter w/ Python 3.



AttributeError Traceback (most recent call last)
<ipython-input-4-5086873db64c> in <module>()
----> 1 rawx = sns.relplot(x="Timestamp",y="X0",kind="line",data=raw)

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









share|improve this question



















  • 1





    Post text as text, not images; provide the actual code that's causing the problem; provide the traceback... unless we have these things, there is no way for us to help you. Please review minimal, complete, and verifiable examples and, more generally, how to ask a good question.

    – kungphu
    Nov 13 '18 at 6:13











  • The picture is simply proof showing that the packages are installed. Don't see it necessary to show that text as it just makes a wall of text.

    – Andrew
    Nov 13 '18 at 6:30






  • 2





    Not to put too fine a point on it, but if you're unable to fix this yourself, you might not want to make too many assumptions about what would or would not be useful for other people to help you solve it. The guidelines are there for a reason, and if you decide to ignore them, you limit our ability to help you.

    – kungphu
    Nov 13 '18 at 6:35






  • 2





    You've provided a traceback from the command line, which contains only one line of code (context is important), and doesn't come close to a verifiable example (which I suggested in my first comment). The error is clear enough, but since you've provided no way to reproduce this or information about your environment, why it's actually happening is anyone's guess. I can't give you suggestions on how to tackle the problem if you don't provide enough information to identify the problem.

    – kungphu
    Nov 13 '18 at 7:01






  • 1





    I guess check that you are installing seaborn 0.9 in the correct place. In addition, try doing print (seaborn.__version__) at the top of your script to double check your version number

    – DavidG
    Nov 13 '18 at 11:39
















-2















I need help with getting lineplot running. I've already updated conda and Seaborn using pip and conda.



Any suggestions on how to resolve this? I am using Jupyter w/ Python 3.



AttributeError Traceback (most recent call last)
<ipython-input-4-5086873db64c> in <module>()
----> 1 rawx = sns.relplot(x="Timestamp",y="X0",kind="line",data=raw)

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









share|improve this question



















  • 1





    Post text as text, not images; provide the actual code that's causing the problem; provide the traceback... unless we have these things, there is no way for us to help you. Please review minimal, complete, and verifiable examples and, more generally, how to ask a good question.

    – kungphu
    Nov 13 '18 at 6:13











  • The picture is simply proof showing that the packages are installed. Don't see it necessary to show that text as it just makes a wall of text.

    – Andrew
    Nov 13 '18 at 6:30






  • 2





    Not to put too fine a point on it, but if you're unable to fix this yourself, you might not want to make too many assumptions about what would or would not be useful for other people to help you solve it. The guidelines are there for a reason, and if you decide to ignore them, you limit our ability to help you.

    – kungphu
    Nov 13 '18 at 6:35






  • 2





    You've provided a traceback from the command line, which contains only one line of code (context is important), and doesn't come close to a verifiable example (which I suggested in my first comment). The error is clear enough, but since you've provided no way to reproduce this or information about your environment, why it's actually happening is anyone's guess. I can't give you suggestions on how to tackle the problem if you don't provide enough information to identify the problem.

    – kungphu
    Nov 13 '18 at 7:01






  • 1





    I guess check that you are installing seaborn 0.9 in the correct place. In addition, try doing print (seaborn.__version__) at the top of your script to double check your version number

    – DavidG
    Nov 13 '18 at 11:39














-2












-2








-2








I need help with getting lineplot running. I've already updated conda and Seaborn using pip and conda.



Any suggestions on how to resolve this? I am using Jupyter w/ Python 3.



AttributeError Traceback (most recent call last)
<ipython-input-4-5086873db64c> in <module>()
----> 1 rawx = sns.relplot(x="Timestamp",y="X0",kind="line",data=raw)

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









share|improve this question
















I need help with getting lineplot running. I've already updated conda and Seaborn using pip and conda.



Any suggestions on how to resolve this? I am using Jupyter w/ Python 3.



AttributeError Traceback (most recent call last)
<ipython-input-4-5086873db64c> in <module>()
----> 1 rawx = sns.relplot(x="Timestamp",y="X0",kind="line",data=raw)

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






python python-3.x seaborn






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 13 '18 at 6:43







Andrew

















asked Nov 13 '18 at 6:10









AndrewAndrew

61




61







  • 1





    Post text as text, not images; provide the actual code that's causing the problem; provide the traceback... unless we have these things, there is no way for us to help you. Please review minimal, complete, and verifiable examples and, more generally, how to ask a good question.

    – kungphu
    Nov 13 '18 at 6:13











  • The picture is simply proof showing that the packages are installed. Don't see it necessary to show that text as it just makes a wall of text.

    – Andrew
    Nov 13 '18 at 6:30






  • 2





    Not to put too fine a point on it, but if you're unable to fix this yourself, you might not want to make too many assumptions about what would or would not be useful for other people to help you solve it. The guidelines are there for a reason, and if you decide to ignore them, you limit our ability to help you.

    – kungphu
    Nov 13 '18 at 6:35






  • 2





    You've provided a traceback from the command line, which contains only one line of code (context is important), and doesn't come close to a verifiable example (which I suggested in my first comment). The error is clear enough, but since you've provided no way to reproduce this or information about your environment, why it's actually happening is anyone's guess. I can't give you suggestions on how to tackle the problem if you don't provide enough information to identify the problem.

    – kungphu
    Nov 13 '18 at 7:01






  • 1





    I guess check that you are installing seaborn 0.9 in the correct place. In addition, try doing print (seaborn.__version__) at the top of your script to double check your version number

    – DavidG
    Nov 13 '18 at 11:39













  • 1





    Post text as text, not images; provide the actual code that's causing the problem; provide the traceback... unless we have these things, there is no way for us to help you. Please review minimal, complete, and verifiable examples and, more generally, how to ask a good question.

    – kungphu
    Nov 13 '18 at 6:13











  • The picture is simply proof showing that the packages are installed. Don't see it necessary to show that text as it just makes a wall of text.

    – Andrew
    Nov 13 '18 at 6:30






  • 2





    Not to put too fine a point on it, but if you're unable to fix this yourself, you might not want to make too many assumptions about what would or would not be useful for other people to help you solve it. The guidelines are there for a reason, and if you decide to ignore them, you limit our ability to help you.

    – kungphu
    Nov 13 '18 at 6:35






  • 2





    You've provided a traceback from the command line, which contains only one line of code (context is important), and doesn't come close to a verifiable example (which I suggested in my first comment). The error is clear enough, but since you've provided no way to reproduce this or information about your environment, why it's actually happening is anyone's guess. I can't give you suggestions on how to tackle the problem if you don't provide enough information to identify the problem.

    – kungphu
    Nov 13 '18 at 7:01






  • 1





    I guess check that you are installing seaborn 0.9 in the correct place. In addition, try doing print (seaborn.__version__) at the top of your script to double check your version number

    – DavidG
    Nov 13 '18 at 11:39








1




1





Post text as text, not images; provide the actual code that's causing the problem; provide the traceback... unless we have these things, there is no way for us to help you. Please review minimal, complete, and verifiable examples and, more generally, how to ask a good question.

– kungphu
Nov 13 '18 at 6:13





Post text as text, not images; provide the actual code that's causing the problem; provide the traceback... unless we have these things, there is no way for us to help you. Please review minimal, complete, and verifiable examples and, more generally, how to ask a good question.

– kungphu
Nov 13 '18 at 6:13













The picture is simply proof showing that the packages are installed. Don't see it necessary to show that text as it just makes a wall of text.

– Andrew
Nov 13 '18 at 6:30





The picture is simply proof showing that the packages are installed. Don't see it necessary to show that text as it just makes a wall of text.

– Andrew
Nov 13 '18 at 6:30




2




2





Not to put too fine a point on it, but if you're unable to fix this yourself, you might not want to make too many assumptions about what would or would not be useful for other people to help you solve it. The guidelines are there for a reason, and if you decide to ignore them, you limit our ability to help you.

– kungphu
Nov 13 '18 at 6:35





Not to put too fine a point on it, but if you're unable to fix this yourself, you might not want to make too many assumptions about what would or would not be useful for other people to help you solve it. The guidelines are there for a reason, and if you decide to ignore them, you limit our ability to help you.

– kungphu
Nov 13 '18 at 6:35




2




2





You've provided a traceback from the command line, which contains only one line of code (context is important), and doesn't come close to a verifiable example (which I suggested in my first comment). The error is clear enough, but since you've provided no way to reproduce this or information about your environment, why it's actually happening is anyone's guess. I can't give you suggestions on how to tackle the problem if you don't provide enough information to identify the problem.

– kungphu
Nov 13 '18 at 7:01





You've provided a traceback from the command line, which contains only one line of code (context is important), and doesn't come close to a verifiable example (which I suggested in my first comment). The error is clear enough, but since you've provided no way to reproduce this or information about your environment, why it's actually happening is anyone's guess. I can't give you suggestions on how to tackle the problem if you don't provide enough information to identify the problem.

– kungphu
Nov 13 '18 at 7:01




1




1





I guess check that you are installing seaborn 0.9 in the correct place. In addition, try doing print (seaborn.__version__) at the top of your script to double check your version number

– DavidG
Nov 13 '18 at 11:39






I guess check that you are installing seaborn 0.9 in the correct place. In addition, try doing print (seaborn.__version__) at the top of your script to double check your version number

– DavidG
Nov 13 '18 at 11:39













1 Answer
1






active

oldest

votes


















0














Sorry, based on what you have given, can only think of checking version of seaborn with:



pip freeze | grep seaborn
pip3 freeze | grep seaborn


And try this within the conda environment:



pip3 install seaborn==0.9.0


Or:



conda install seaborn==0.9.0


and to make sure you are actually loading the proper version of Python that has the updated seaborn.






share|improve this answer
























    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
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53274832%2fattributeerror-module-seaborn-has-no-attribute-lineplot-already-updated-t%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









    0














    Sorry, based on what you have given, can only think of checking version of seaborn with:



    pip freeze | grep seaborn
    pip3 freeze | grep seaborn


    And try this within the conda environment:



    pip3 install seaborn==0.9.0


    Or:



    conda install seaborn==0.9.0


    and to make sure you are actually loading the proper version of Python that has the updated seaborn.






    share|improve this answer





























      0














      Sorry, based on what you have given, can only think of checking version of seaborn with:



      pip freeze | grep seaborn
      pip3 freeze | grep seaborn


      And try this within the conda environment:



      pip3 install seaborn==0.9.0


      Or:



      conda install seaborn==0.9.0


      and to make sure you are actually loading the proper version of Python that has the updated seaborn.






      share|improve this answer



























        0












        0








        0







        Sorry, based on what you have given, can only think of checking version of seaborn with:



        pip freeze | grep seaborn
        pip3 freeze | grep seaborn


        And try this within the conda environment:



        pip3 install seaborn==0.9.0


        Or:



        conda install seaborn==0.9.0


        and to make sure you are actually loading the proper version of Python that has the updated seaborn.






        share|improve this answer















        Sorry, based on what you have given, can only think of checking version of seaborn with:



        pip freeze | grep seaborn
        pip3 freeze | grep seaborn


        And try this within the conda environment:



        pip3 install seaborn==0.9.0


        Or:



        conda install seaborn==0.9.0


        and to make sure you are actually loading the proper version of Python that has the updated seaborn.







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Nov 13 '18 at 7:46

























        answered Nov 13 '18 at 7:40









        user1394user1394

        3121313




        3121313



























            draft saved

            draft discarded
















































            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.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53274832%2fattributeerror-module-seaborn-has-no-attribute-lineplot-already-updated-t%23new-answer', 'question_page');

            );

            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







            這個網誌中的熱門文章

            Barbados

            How to read a connectionString WITH PROVIDER in .NET Core?

            Node.js Script on GitHub Pages or Amazon S3