Third y-axis not visible with seaborn darkgrid style2019 Community Moderator Electionseaborn kdeplot x axis scaling?Seaborn plots not showing upHow do I change the figure size for a seaborn plot?Hide Axis Titles in SeabornDate axis in heatmap seabornFormatting Seaborn x-axisSeaborn Stripplot Axis Values with Correct Scalingwiden the x-axis seabornTransforming Seaborn axis to logHow to break y-axis using seaborn?
Do native speakers use "ultima" and "proxima" frequently in spoken English?
Generic TVP tradeoffs?
Is it possible to stack the damage done by the Absorb Elements spell?
What exactly term 'companion plants' means?
Is there a term for accumulated dirt on the outside of your hands and feet?
Is there a hypothetical scenario that would make Earth uninhabitable for humans, but not for (the majority of) other animals?
In what cases must I use 了 and in what cases not?
Practical application of matrices and determinants
I seem to dance, I am not a dancer. Who am I?
Fewest number of steps to reach 200 using special calculator
Existence of a celestial body big enough for early civilization to be thought of as a second moon
In Aliens, how many people were on LV-426 before the Marines arrived?
Synchronized implementation of a bank account in Java
Does the attack bonus from a Masterwork weapon stack with the attack bonus from Masterwork ammunition?
Why are there no stars visible in cislunar space?
Bash - pair each line of file
Suggestions on how to spend Shaabath (constructively) alone
Probably overheated black color SMD pads
gerund and noun applications
How to terminate ping <dest> &
Knife as defense against stray dogs
How is the partial sum of a geometric sequence calculated?
How could an airship be repaired midflight?
Writing in a Christian voice
Third y-axis not visible with seaborn darkgrid style
2019 Community Moderator Electionseaborn kdeplot x axis scaling?Seaborn plots not showing upHow do I change the figure size for a seaborn plot?Hide Axis Titles in SeabornDate axis in heatmap seabornFormatting Seaborn x-axisSeaborn Stripplot Axis Values with Correct Scalingwiden the x-axis seabornTransforming Seaborn axis to logHow to break y-axis using seaborn?
The problem arises when using the darkgrid style in seaborn with multi y-axis plots. The third axis is white and it is placed outside of the dark background.
Is there a way to extend the dark background or to color the third axis as the background?
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
sns.set()
sns.set_style("darkgrid")
colors = sns.color_palette('deep')
a = np.asarray([0., 1., 2., 3., 4., 5.])
b = np.sin(a)
c = np.sin(a/2)
d = np.sin(a/3)
fig = plt.figure()
host = fig.add_subplot(111)
par1 = host.twinx()
par2 = host.twinx()
host.set_xlabel("x")
host.set_ylabel("y1")
par1.set_ylabel("y2")
par2.set_ylabel("y3")
p1, = host.plot(a, b, color='r', label="y1")
p2, = par1.plot(a, c*2, color='b', label="y2")
p3, = par2.plot(a, d/2, color='g', label="y3")
lns = [p1, p2, p3]
host.legend(handles=lns, loc='lower center')
par2.spines['right'].set_position(('outward', 60))
par1.grid(False)
par2.grid(False)
host.yaxis.label.set_color(p1.get_color())
par1.yaxis.label.set_color(p2.get_color())
par2.yaxis.label.set_color(p3.get_color())
plt.show()
seaborn
add a comment |
The problem arises when using the darkgrid style in seaborn with multi y-axis plots. The third axis is white and it is placed outside of the dark background.
Is there a way to extend the dark background or to color the third axis as the background?
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
sns.set()
sns.set_style("darkgrid")
colors = sns.color_palette('deep')
a = np.asarray([0., 1., 2., 3., 4., 5.])
b = np.sin(a)
c = np.sin(a/2)
d = np.sin(a/3)
fig = plt.figure()
host = fig.add_subplot(111)
par1 = host.twinx()
par2 = host.twinx()
host.set_xlabel("x")
host.set_ylabel("y1")
par1.set_ylabel("y2")
par2.set_ylabel("y3")
p1, = host.plot(a, b, color='r', label="y1")
p2, = par1.plot(a, c*2, color='b', label="y2")
p3, = par2.plot(a, d/2, color='g', label="y3")
lns = [p1, p2, p3]
host.legend(handles=lns, loc='lower center')
par2.spines['right'].set_position(('outward', 60))
par1.grid(False)
par2.grid(False)
host.yaxis.label.set_color(p1.get_color())
par1.yaxis.label.set_color(p2.get_color())
par2.yaxis.label.set_color(p3.get_color())
plt.show()
seaborn
I think that plot would be very hard to read. But if you want to still do it you could move the second axis inwards and let the third one be at the original position.
– ImportanceOfBeingErnest
Mar 8 at 19:25
add a comment |
The problem arises when using the darkgrid style in seaborn with multi y-axis plots. The third axis is white and it is placed outside of the dark background.
Is there a way to extend the dark background or to color the third axis as the background?
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
sns.set()
sns.set_style("darkgrid")
colors = sns.color_palette('deep')
a = np.asarray([0., 1., 2., 3., 4., 5.])
b = np.sin(a)
c = np.sin(a/2)
d = np.sin(a/3)
fig = plt.figure()
host = fig.add_subplot(111)
par1 = host.twinx()
par2 = host.twinx()
host.set_xlabel("x")
host.set_ylabel("y1")
par1.set_ylabel("y2")
par2.set_ylabel("y3")
p1, = host.plot(a, b, color='r', label="y1")
p2, = par1.plot(a, c*2, color='b', label="y2")
p3, = par2.plot(a, d/2, color='g', label="y3")
lns = [p1, p2, p3]
host.legend(handles=lns, loc='lower center')
par2.spines['right'].set_position(('outward', 60))
par1.grid(False)
par2.grid(False)
host.yaxis.label.set_color(p1.get_color())
par1.yaxis.label.set_color(p2.get_color())
par2.yaxis.label.set_color(p3.get_color())
plt.show()
seaborn
The problem arises when using the darkgrid style in seaborn with multi y-axis plots. The third axis is white and it is placed outside of the dark background.
Is there a way to extend the dark background or to color the third axis as the background?
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
sns.set()
sns.set_style("darkgrid")
colors = sns.color_palette('deep')
a = np.asarray([0., 1., 2., 3., 4., 5.])
b = np.sin(a)
c = np.sin(a/2)
d = np.sin(a/3)
fig = plt.figure()
host = fig.add_subplot(111)
par1 = host.twinx()
par2 = host.twinx()
host.set_xlabel("x")
host.set_ylabel("y1")
par1.set_ylabel("y2")
par2.set_ylabel("y3")
p1, = host.plot(a, b, color='r', label="y1")
p2, = par1.plot(a, c*2, color='b', label="y2")
p3, = par2.plot(a, d/2, color='g', label="y3")
lns = [p1, p2, p3]
host.legend(handles=lns, loc='lower center')
par2.spines['right'].set_position(('outward', 60))
par1.grid(False)
par2.grid(False)
host.yaxis.label.set_color(p1.get_color())
par1.yaxis.label.set_color(p2.get_color())
par2.yaxis.label.set_color(p3.get_color())
plt.show()
seaborn
seaborn
asked Mar 7 at 17:27
MatteoMatteo
263
263
I think that plot would be very hard to read. But if you want to still do it you could move the second axis inwards and let the third one be at the original position.
– ImportanceOfBeingErnest
Mar 8 at 19:25
add a comment |
I think that plot would be very hard to read. But if you want to still do it you could move the second axis inwards and let the third one be at the original position.
– ImportanceOfBeingErnest
Mar 8 at 19:25
I think that plot would be very hard to read. But if you want to still do it you could move the second axis inwards and let the third one be at the original position.
– ImportanceOfBeingErnest
Mar 8 at 19:25
I think that plot would be very hard to read. But if you want to still do it you could move the second axis inwards and let the third one be at the original position.
– ImportanceOfBeingErnest
Mar 8 at 19:25
add a comment |
0
active
oldest
votes
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%2f55049691%2fthird-y-axis-not-visible-with-seaborn-darkgrid-style%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f55049691%2fthird-y-axis-not-visible-with-seaborn-darkgrid-style%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
I think that plot would be very hard to read. But if you want to still do it you could move the second axis inwards and let the third one be at the original position.
– ImportanceOfBeingErnest
Mar 8 at 19:25