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?










0















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


enter image description here










share|improve this question






















  • 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















0















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


enter image description here










share|improve this question






















  • 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













0












0








0








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


enter image description here










share|improve this question














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


enter image description here







seaborn






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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

















  • 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












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



);













draft saved

draft discarded


















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















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%2f55049691%2fthird-y-axis-not-visible-with-seaborn-darkgrid-style%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

Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived