Seaborn jointplot colour marginal plots separatelySeaborn jointplot show annotationHow to put the legend out of the plotSave plot to image file instead of displaying it using MatplotlibConvert Python dict into a dataframeHow to make IPython notebook matplotlib plot inlinePlotting errors bars from dataframe using Seaborn FacetGridSeaborn plots not showing upMatplotlib: how to have different label for marker and colorHow to plot multiple Seaborn Jointplot in SubplotControlling color, legend when plotting from Pandas DataFrame with multiple y values for each xlabel is not appearing in seaborn distplot

Where does the Z80 processor start executing from?

Closest Prime Number

How to be diplomatic in refusing to write code that breaches the privacy of our users

How can I get through very long and very dry, but also very useful technical documents when learning a new tool?

Did Dumbledore lie to Harry about how long he had James Potter's invisibility cloak when he was examining it? If so, why?

Sequence of Tenses: Translating the subjunctive

Opposite of a diet

Are student evaluations of teaching assistants read by others in the faculty?

Fastening aluminum fascia to wooden subfascia

Short story about space worker geeks who zone out by 'listening' to radiation from stars

Why, precisely, is argon used in neutrino experiments?

How to draw lines on a tikz-cd diagram

How to check is there any negative term in a large list?

Why Were Madagascar and New Zealand Discovered So Late?

What happens if you roll doubles 3 times then land on "Go to jail?"

Hostile work environment after whistle-blowing on coworker and our boss. What do I do?

Proof of work - lottery approach

Integer addition + constant, is it a group?

How to run a prison with the smallest amount of guards?

Type int? vs type int

Lay out the Carpet

How to write papers efficiently when English isn't my first language?

What is paid subscription needed for in Mortal Kombat 11?

How many times can American Tourist re-enter UK in same 6 month period?



Seaborn jointplot colour marginal plots separately


Seaborn jointplot show annotationHow to put the legend out of the plotSave plot to image file instead of displaying it using MatplotlibConvert Python dict into a dataframeHow to make IPython notebook matplotlib plot inlinePlotting errors bars from dataframe using Seaborn FacetGridSeaborn plots not showing upMatplotlib: how to have different label for marker and colorHow to plot multiple Seaborn Jointplot in SubplotControlling color, legend when plotting from Pandas DataFrame with multiple y values for each xlabel is not appearing in seaborn distplot













4















I want to colour my marginal plots separately for each variable.



d1 = np.random.normal(10,1,100)
d2 = np.random.gamma(1,2,100)
col1 = sns.color_palette()[0]
col2 = sns.color_palette()[1]
col3 = sns.color_palette()[2]

jp = sns.jointplot(d1, d2, kind="hex", annot_kws=dict(stat="r"), joint_kws=dict(bins='log'))
ax = jp.ax_joint
ax.plot(ax.get_xlim(), ax.get_ylim(), ls="--", c=".3", label="1:1")


Produces:
Example Plot



I want to colour each marginal plot separately. But when I assign arguments to the marginal axes they colour both marginal plots with the same arguments .



jp = sns.jointplot(d1, d2, kind="hex", annot_kws=dict(stat="r"), joint_kws=dict(bins='log'), marginal_kws=dict(hist_kws= 'color': col2))
ax = jp.ax_joint
ax.plot(ax.get_xlim(), ax.get_ylim(), ls="--", c=".3", label="1:1")



Plot Colouring the Marginal Distributions



I can colour the 'facecolors' but not the axes themselves. Any help very much appreciated!



jp = sns.jointplot(d1, d2, kind="hex", annot_kws=dict(stat="r"), joint_kws=dict(bins='log'), marginal_kws=dict(hist_kws= 'color': col2))
ax = jp.ax_joint
ax.plot(ax.get_xlim(), ax.get_ylim(), ls="--", c=".3", label="1:1")

# new code
jp.ax_marg_x.set_facecolor(col1)
jp.ax_marg_y.set_facecolor(col3)



Coloring the facecolors individually










share|improve this question


























    4















    I want to colour my marginal plots separately for each variable.



    d1 = np.random.normal(10,1,100)
    d2 = np.random.gamma(1,2,100)
    col1 = sns.color_palette()[0]
    col2 = sns.color_palette()[1]
    col3 = sns.color_palette()[2]

    jp = sns.jointplot(d1, d2, kind="hex", annot_kws=dict(stat="r"), joint_kws=dict(bins='log'))
    ax = jp.ax_joint
    ax.plot(ax.get_xlim(), ax.get_ylim(), ls="--", c=".3", label="1:1")


    Produces:
    Example Plot



    I want to colour each marginal plot separately. But when I assign arguments to the marginal axes they colour both marginal plots with the same arguments .



    jp = sns.jointplot(d1, d2, kind="hex", annot_kws=dict(stat="r"), joint_kws=dict(bins='log'), marginal_kws=dict(hist_kws= 'color': col2))
    ax = jp.ax_joint
    ax.plot(ax.get_xlim(), ax.get_ylim(), ls="--", c=".3", label="1:1")



    Plot Colouring the Marginal Distributions



    I can colour the 'facecolors' but not the axes themselves. Any help very much appreciated!



    jp = sns.jointplot(d1, d2, kind="hex", annot_kws=dict(stat="r"), joint_kws=dict(bins='log'), marginal_kws=dict(hist_kws= 'color': col2))
    ax = jp.ax_joint
    ax.plot(ax.get_xlim(), ax.get_ylim(), ls="--", c=".3", label="1:1")

    # new code
    jp.ax_marg_x.set_facecolor(col1)
    jp.ax_marg_y.set_facecolor(col3)



    Coloring the facecolors individually










    share|improve this question
























      4












      4








      4








      I want to colour my marginal plots separately for each variable.



      d1 = np.random.normal(10,1,100)
      d2 = np.random.gamma(1,2,100)
      col1 = sns.color_palette()[0]
      col2 = sns.color_palette()[1]
      col3 = sns.color_palette()[2]

      jp = sns.jointplot(d1, d2, kind="hex", annot_kws=dict(stat="r"), joint_kws=dict(bins='log'))
      ax = jp.ax_joint
      ax.plot(ax.get_xlim(), ax.get_ylim(), ls="--", c=".3", label="1:1")


      Produces:
      Example Plot



      I want to colour each marginal plot separately. But when I assign arguments to the marginal axes they colour both marginal plots with the same arguments .



      jp = sns.jointplot(d1, d2, kind="hex", annot_kws=dict(stat="r"), joint_kws=dict(bins='log'), marginal_kws=dict(hist_kws= 'color': col2))
      ax = jp.ax_joint
      ax.plot(ax.get_xlim(), ax.get_ylim(), ls="--", c=".3", label="1:1")



      Plot Colouring the Marginal Distributions



      I can colour the 'facecolors' but not the axes themselves. Any help very much appreciated!



      jp = sns.jointplot(d1, d2, kind="hex", annot_kws=dict(stat="r"), joint_kws=dict(bins='log'), marginal_kws=dict(hist_kws= 'color': col2))
      ax = jp.ax_joint
      ax.plot(ax.get_xlim(), ax.get_ylim(), ls="--", c=".3", label="1:1")

      # new code
      jp.ax_marg_x.set_facecolor(col1)
      jp.ax_marg_y.set_facecolor(col3)



      Coloring the facecolors individually










      share|improve this question














      I want to colour my marginal plots separately for each variable.



      d1 = np.random.normal(10,1,100)
      d2 = np.random.gamma(1,2,100)
      col1 = sns.color_palette()[0]
      col2 = sns.color_palette()[1]
      col3 = sns.color_palette()[2]

      jp = sns.jointplot(d1, d2, kind="hex", annot_kws=dict(stat="r"), joint_kws=dict(bins='log'))
      ax = jp.ax_joint
      ax.plot(ax.get_xlim(), ax.get_ylim(), ls="--", c=".3", label="1:1")


      Produces:
      Example Plot



      I want to colour each marginal plot separately. But when I assign arguments to the marginal axes they colour both marginal plots with the same arguments .



      jp = sns.jointplot(d1, d2, kind="hex", annot_kws=dict(stat="r"), joint_kws=dict(bins='log'), marginal_kws=dict(hist_kws= 'color': col2))
      ax = jp.ax_joint
      ax.plot(ax.get_xlim(), ax.get_ylim(), ls="--", c=".3", label="1:1")



      Plot Colouring the Marginal Distributions



      I can colour the 'facecolors' but not the axes themselves. Any help very much appreciated!



      jp = sns.jointplot(d1, d2, kind="hex", annot_kws=dict(stat="r"), joint_kws=dict(bins='log'), marginal_kws=dict(hist_kws= 'color': col2))
      ax = jp.ax_joint
      ax.plot(ax.get_xlim(), ax.get_ylim(), ls="--", c=".3", label="1:1")

      # new code
      jp.ax_marg_x.set_facecolor(col1)
      jp.ax_marg_y.set_facecolor(col3)



      Coloring the facecolors individually







      python python-3.x matplotlib seaborn






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 21 at 15:54









      Tommy LeesTommy Lees

      16811




      16811






















          1 Answer
          1






          active

          oldest

          votes


















          5














          You can do it by accessing the patches of two marginal plots and changing their face colors.



          import seaborn as sns
          import numpy as np

          # define data here

          jp = sns.jointplot(d1, d2, kind="hex", annot_kws=dict(stat="r"), joint_kws=dict(bins='log'), color=col2)
          ax = jp.ax_joint
          ax.plot(ax.get_xlim(), ax.get_ylim(), ls="--", c=".3", label="1:1")

          for patch in jp.ax_marg_x.patches:
          patch.set_facecolor(col1)

          for patch in jp.ax_marg_y.patches:
          patch.set_facecolor(col3)


          enter image description here






          share|improve this answer

























          • And how do I get the annotation to show? I have added: annot_kws=dict(stat="r") but it doesn't show up anywhere on the plot?

            – Tommy Lees
            Mar 21 at 16:55











          • Sorry I realise new question but just thought about that! Awesome answer

            – Tommy Lees
            Mar 21 at 16:56











          • @TommyLees: I would recommend to post a new question on that as it could be of potential importance for many. In the mean time, I will work on the answer and let you know asap.

            – Bazingaa
            Mar 21 at 16:58












          • thank you very much I did just that here - stackoverflow.com/q/55285704/9940782

            – Tommy Lees
            Mar 21 at 17:06











          • @TommyLees: By annotation, you mean the equation of the best fit straight line, right?

            – Bazingaa
            Mar 21 at 17:07











          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%2f55284426%2fseaborn-jointplot-colour-marginal-plots-separately%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









          5














          You can do it by accessing the patches of two marginal plots and changing their face colors.



          import seaborn as sns
          import numpy as np

          # define data here

          jp = sns.jointplot(d1, d2, kind="hex", annot_kws=dict(stat="r"), joint_kws=dict(bins='log'), color=col2)
          ax = jp.ax_joint
          ax.plot(ax.get_xlim(), ax.get_ylim(), ls="--", c=".3", label="1:1")

          for patch in jp.ax_marg_x.patches:
          patch.set_facecolor(col1)

          for patch in jp.ax_marg_y.patches:
          patch.set_facecolor(col3)


          enter image description here






          share|improve this answer

























          • And how do I get the annotation to show? I have added: annot_kws=dict(stat="r") but it doesn't show up anywhere on the plot?

            – Tommy Lees
            Mar 21 at 16:55











          • Sorry I realise new question but just thought about that! Awesome answer

            – Tommy Lees
            Mar 21 at 16:56











          • @TommyLees: I would recommend to post a new question on that as it could be of potential importance for many. In the mean time, I will work on the answer and let you know asap.

            – Bazingaa
            Mar 21 at 16:58












          • thank you very much I did just that here - stackoverflow.com/q/55285704/9940782

            – Tommy Lees
            Mar 21 at 17:06











          • @TommyLees: By annotation, you mean the equation of the best fit straight line, right?

            – Bazingaa
            Mar 21 at 17:07
















          5














          You can do it by accessing the patches of two marginal plots and changing their face colors.



          import seaborn as sns
          import numpy as np

          # define data here

          jp = sns.jointplot(d1, d2, kind="hex", annot_kws=dict(stat="r"), joint_kws=dict(bins='log'), color=col2)
          ax = jp.ax_joint
          ax.plot(ax.get_xlim(), ax.get_ylim(), ls="--", c=".3", label="1:1")

          for patch in jp.ax_marg_x.patches:
          patch.set_facecolor(col1)

          for patch in jp.ax_marg_y.patches:
          patch.set_facecolor(col3)


          enter image description here






          share|improve this answer

























          • And how do I get the annotation to show? I have added: annot_kws=dict(stat="r") but it doesn't show up anywhere on the plot?

            – Tommy Lees
            Mar 21 at 16:55











          • Sorry I realise new question but just thought about that! Awesome answer

            – Tommy Lees
            Mar 21 at 16:56











          • @TommyLees: I would recommend to post a new question on that as it could be of potential importance for many. In the mean time, I will work on the answer and let you know asap.

            – Bazingaa
            Mar 21 at 16:58












          • thank you very much I did just that here - stackoverflow.com/q/55285704/9940782

            – Tommy Lees
            Mar 21 at 17:06











          • @TommyLees: By annotation, you mean the equation of the best fit straight line, right?

            – Bazingaa
            Mar 21 at 17:07














          5












          5








          5







          You can do it by accessing the patches of two marginal plots and changing their face colors.



          import seaborn as sns
          import numpy as np

          # define data here

          jp = sns.jointplot(d1, d2, kind="hex", annot_kws=dict(stat="r"), joint_kws=dict(bins='log'), color=col2)
          ax = jp.ax_joint
          ax.plot(ax.get_xlim(), ax.get_ylim(), ls="--", c=".3", label="1:1")

          for patch in jp.ax_marg_x.patches:
          patch.set_facecolor(col1)

          for patch in jp.ax_marg_y.patches:
          patch.set_facecolor(col3)


          enter image description here






          share|improve this answer















          You can do it by accessing the patches of two marginal plots and changing their face colors.



          import seaborn as sns
          import numpy as np

          # define data here

          jp = sns.jointplot(d1, d2, kind="hex", annot_kws=dict(stat="r"), joint_kws=dict(bins='log'), color=col2)
          ax = jp.ax_joint
          ax.plot(ax.get_xlim(), ax.get_ylim(), ls="--", c=".3", label="1:1")

          for patch in jp.ax_marg_x.patches:
          patch.set_facecolor(col1)

          for patch in jp.ax_marg_y.patches:
          patch.set_facecolor(col3)


          enter image description here







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Mar 21 at 16:55

























          answered Mar 21 at 16:22









          BazingaaBazingaa

          15.1k21230




          15.1k21230












          • And how do I get the annotation to show? I have added: annot_kws=dict(stat="r") but it doesn't show up anywhere on the plot?

            – Tommy Lees
            Mar 21 at 16:55











          • Sorry I realise new question but just thought about that! Awesome answer

            – Tommy Lees
            Mar 21 at 16:56











          • @TommyLees: I would recommend to post a new question on that as it could be of potential importance for many. In the mean time, I will work on the answer and let you know asap.

            – Bazingaa
            Mar 21 at 16:58












          • thank you very much I did just that here - stackoverflow.com/q/55285704/9940782

            – Tommy Lees
            Mar 21 at 17:06











          • @TommyLees: By annotation, you mean the equation of the best fit straight line, right?

            – Bazingaa
            Mar 21 at 17:07


















          • And how do I get the annotation to show? I have added: annot_kws=dict(stat="r") but it doesn't show up anywhere on the plot?

            – Tommy Lees
            Mar 21 at 16:55











          • Sorry I realise new question but just thought about that! Awesome answer

            – Tommy Lees
            Mar 21 at 16:56











          • @TommyLees: I would recommend to post a new question on that as it could be of potential importance for many. In the mean time, I will work on the answer and let you know asap.

            – Bazingaa
            Mar 21 at 16:58












          • thank you very much I did just that here - stackoverflow.com/q/55285704/9940782

            – Tommy Lees
            Mar 21 at 17:06











          • @TommyLees: By annotation, you mean the equation of the best fit straight line, right?

            – Bazingaa
            Mar 21 at 17:07

















          And how do I get the annotation to show? I have added: annot_kws=dict(stat="r") but it doesn't show up anywhere on the plot?

          – Tommy Lees
          Mar 21 at 16:55





          And how do I get the annotation to show? I have added: annot_kws=dict(stat="r") but it doesn't show up anywhere on the plot?

          – Tommy Lees
          Mar 21 at 16:55













          Sorry I realise new question but just thought about that! Awesome answer

          – Tommy Lees
          Mar 21 at 16:56





          Sorry I realise new question but just thought about that! Awesome answer

          – Tommy Lees
          Mar 21 at 16:56













          @TommyLees: I would recommend to post a new question on that as it could be of potential importance for many. In the mean time, I will work on the answer and let you know asap.

          – Bazingaa
          Mar 21 at 16:58






          @TommyLees: I would recommend to post a new question on that as it could be of potential importance for many. In the mean time, I will work on the answer and let you know asap.

          – Bazingaa
          Mar 21 at 16:58














          thank you very much I did just that here - stackoverflow.com/q/55285704/9940782

          – Tommy Lees
          Mar 21 at 17:06





          thank you very much I did just that here - stackoverflow.com/q/55285704/9940782

          – Tommy Lees
          Mar 21 at 17:06













          @TommyLees: By annotation, you mean the equation of the best fit straight line, right?

          – Bazingaa
          Mar 21 at 17:07






          @TommyLees: By annotation, you mean the equation of the best fit straight line, right?

          – Bazingaa
          Mar 21 at 17:07




















          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%2f55284426%2fseaborn-jointplot-colour-marginal-plots-separately%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







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript