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
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:
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")
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)
python python-3.x matplotlib seaborn
add a comment |
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:
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")
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)
python python-3.x matplotlib seaborn
add a comment |
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:
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")
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)
python python-3.x matplotlib seaborn
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:
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")
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)
python python-3.x matplotlib seaborn
python python-3.x matplotlib seaborn
asked Mar 21 at 15:54
Tommy LeesTommy Lees
16811
16811
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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)
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
|
show 2 more comments
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%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
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)
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
|
show 2 more comments
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)
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
|
show 2 more comments
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)
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)
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
|
show 2 more comments
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
|
show 2 more comments
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%2f55284426%2fseaborn-jointplot-colour-marginal-plots-separately%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