matplotlib multiple plots on one axis through loop does not update y_lim
I need to create a figure which contains multiple Gaussian histograms from a list of parameters (pairs of mu and sigma). What I have so far:
import matplotlib.pyplot as plt
import seaborn as sns
from scipy import stats
import numpy as np
def single_camel_plot(mu, sigma, ax):
x = np.linspace(mu - 4*sigma, mu + 4*sigma, 1000)
sns.lineplot(x, stats.norm.pdf(x, mu, sigma), ax=ax)
ax.set_ylim(bottom=0)
fig, ax = plt.subplots()
mu_sigma_pairs = [(16900, 2100), (18200, 1500)]
for mu, sigma in mu_sigma_pairs:
single_camel_plot(mu, sigma, ax)
The output is this figure.
Ideally, the two histograms would use a single y-axis instead of a secondary axis, and the ylim
should adjust to accomodate the tallest curve.
python matplotlib seaborn
add a comment |
I need to create a figure which contains multiple Gaussian histograms from a list of parameters (pairs of mu and sigma). What I have so far:
import matplotlib.pyplot as plt
import seaborn as sns
from scipy import stats
import numpy as np
def single_camel_plot(mu, sigma, ax):
x = np.linspace(mu - 4*sigma, mu + 4*sigma, 1000)
sns.lineplot(x, stats.norm.pdf(x, mu, sigma), ax=ax)
ax.set_ylim(bottom=0)
fig, ax = plt.subplots()
mu_sigma_pairs = [(16900, 2100), (18200, 1500)]
for mu, sigma in mu_sigma_pairs:
single_camel_plot(mu, sigma, ax)
The output is this figure.
Ideally, the two histograms would use a single y-axis instead of a secondary axis, and the ylim
should adjust to accomodate the tallest curve.
python matplotlib seaborn
Seems to me that theset_ylim(bottom=0)
is the culprit. After commented it out it no longer creates the problem. It's strange that somehow the other parametertop
is also affected byset_ylim
although I did not specify a value for it.
– Xiaoyu Lu
Nov 13 '18 at 17:17
Setting the limit (even one) for your y-axis will turn off autoscaling. I don't think there's any way to autoscale only one end of the axis limits.
– busybear
Nov 13 '18 at 19:46
add a comment |
I need to create a figure which contains multiple Gaussian histograms from a list of parameters (pairs of mu and sigma). What I have so far:
import matplotlib.pyplot as plt
import seaborn as sns
from scipy import stats
import numpy as np
def single_camel_plot(mu, sigma, ax):
x = np.linspace(mu - 4*sigma, mu + 4*sigma, 1000)
sns.lineplot(x, stats.norm.pdf(x, mu, sigma), ax=ax)
ax.set_ylim(bottom=0)
fig, ax = plt.subplots()
mu_sigma_pairs = [(16900, 2100), (18200, 1500)]
for mu, sigma in mu_sigma_pairs:
single_camel_plot(mu, sigma, ax)
The output is this figure.
Ideally, the two histograms would use a single y-axis instead of a secondary axis, and the ylim
should adjust to accomodate the tallest curve.
python matplotlib seaborn
I need to create a figure which contains multiple Gaussian histograms from a list of parameters (pairs of mu and sigma). What I have so far:
import matplotlib.pyplot as plt
import seaborn as sns
from scipy import stats
import numpy as np
def single_camel_plot(mu, sigma, ax):
x = np.linspace(mu - 4*sigma, mu + 4*sigma, 1000)
sns.lineplot(x, stats.norm.pdf(x, mu, sigma), ax=ax)
ax.set_ylim(bottom=0)
fig, ax = plt.subplots()
mu_sigma_pairs = [(16900, 2100), (18200, 1500)]
for mu, sigma in mu_sigma_pairs:
single_camel_plot(mu, sigma, ax)
The output is this figure.
Ideally, the two histograms would use a single y-axis instead of a secondary axis, and the ylim
should adjust to accomodate the tallest curve.
python matplotlib seaborn
python matplotlib seaborn
asked Nov 13 '18 at 17:14
Xiaoyu LuXiaoyu Lu
431413
431413
Seems to me that theset_ylim(bottom=0)
is the culprit. After commented it out it no longer creates the problem. It's strange that somehow the other parametertop
is also affected byset_ylim
although I did not specify a value for it.
– Xiaoyu Lu
Nov 13 '18 at 17:17
Setting the limit (even one) for your y-axis will turn off autoscaling. I don't think there's any way to autoscale only one end of the axis limits.
– busybear
Nov 13 '18 at 19:46
add a comment |
Seems to me that theset_ylim(bottom=0)
is the culprit. After commented it out it no longer creates the problem. It's strange that somehow the other parametertop
is also affected byset_ylim
although I did not specify a value for it.
– Xiaoyu Lu
Nov 13 '18 at 17:17
Setting the limit (even one) for your y-axis will turn off autoscaling. I don't think there's any way to autoscale only one end of the axis limits.
– busybear
Nov 13 '18 at 19:46
Seems to me that the
set_ylim(bottom=0)
is the culprit. After commented it out it no longer creates the problem. It's strange that somehow the other parameter top
is also affected by set_ylim
although I did not specify a value for it.– Xiaoyu Lu
Nov 13 '18 at 17:17
Seems to me that the
set_ylim(bottom=0)
is the culprit. After commented it out it no longer creates the problem. It's strange that somehow the other parameter top
is also affected by set_ylim
although I did not specify a value for it.– Xiaoyu Lu
Nov 13 '18 at 17:17
Setting the limit (even one) for your y-axis will turn off autoscaling. I don't think there's any way to autoscale only one end of the axis limits.
– busybear
Nov 13 '18 at 19:46
Setting the limit (even one) for your y-axis will turn off autoscaling. I don't think there's any way to autoscale only one end of the axis limits.
– busybear
Nov 13 '18 at 19:46
add a comment |
1 Answer
1
active
oldest
votes
You will need to set the limit outside the loop, such that it can autoscale when the plot is already filled.
import matplotlib.pyplot as plt
from scipy import stats
import numpy as np
def single_camel_plot(mu, sigma, ax):
x = np.linspace(mu - 4*sigma, mu + 4*sigma, 1000)
ax.plot(x, stats.norm.pdf(x, mu, sigma))
fig, ax = plt.subplots()
mu_sigma_pairs = [(16900, 2100), (18200, 1500)]
for mu, sigma in mu_sigma_pairs:
single_camel_plot(mu, sigma, ax)
ax.set_ylim(bottom=0) # <------- HERE
plt.show()
add a comment |
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%2f53286320%2fmatplotlib-multiple-plots-on-one-axis-through-loop-does-not-update-y-lim%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 will need to set the limit outside the loop, such that it can autoscale when the plot is already filled.
import matplotlib.pyplot as plt
from scipy import stats
import numpy as np
def single_camel_plot(mu, sigma, ax):
x = np.linspace(mu - 4*sigma, mu + 4*sigma, 1000)
ax.plot(x, stats.norm.pdf(x, mu, sigma))
fig, ax = plt.subplots()
mu_sigma_pairs = [(16900, 2100), (18200, 1500)]
for mu, sigma in mu_sigma_pairs:
single_camel_plot(mu, sigma, ax)
ax.set_ylim(bottom=0) # <------- HERE
plt.show()
add a comment |
You will need to set the limit outside the loop, such that it can autoscale when the plot is already filled.
import matplotlib.pyplot as plt
from scipy import stats
import numpy as np
def single_camel_plot(mu, sigma, ax):
x = np.linspace(mu - 4*sigma, mu + 4*sigma, 1000)
ax.plot(x, stats.norm.pdf(x, mu, sigma))
fig, ax = plt.subplots()
mu_sigma_pairs = [(16900, 2100), (18200, 1500)]
for mu, sigma in mu_sigma_pairs:
single_camel_plot(mu, sigma, ax)
ax.set_ylim(bottom=0) # <------- HERE
plt.show()
add a comment |
You will need to set the limit outside the loop, such that it can autoscale when the plot is already filled.
import matplotlib.pyplot as plt
from scipy import stats
import numpy as np
def single_camel_plot(mu, sigma, ax):
x = np.linspace(mu - 4*sigma, mu + 4*sigma, 1000)
ax.plot(x, stats.norm.pdf(x, mu, sigma))
fig, ax = plt.subplots()
mu_sigma_pairs = [(16900, 2100), (18200, 1500)]
for mu, sigma in mu_sigma_pairs:
single_camel_plot(mu, sigma, ax)
ax.set_ylim(bottom=0) # <------- HERE
plt.show()
You will need to set the limit outside the loop, such that it can autoscale when the plot is already filled.
import matplotlib.pyplot as plt
from scipy import stats
import numpy as np
def single_camel_plot(mu, sigma, ax):
x = np.linspace(mu - 4*sigma, mu + 4*sigma, 1000)
ax.plot(x, stats.norm.pdf(x, mu, sigma))
fig, ax = plt.subplots()
mu_sigma_pairs = [(16900, 2100), (18200, 1500)]
for mu, sigma in mu_sigma_pairs:
single_camel_plot(mu, sigma, ax)
ax.set_ylim(bottom=0) # <------- HERE
plt.show()
answered Nov 13 '18 at 20:33
ImportanceOfBeingErnestImportanceOfBeingErnest
129k12138215
129k12138215
add a comment |
add a comment |
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%2f53286320%2fmatplotlib-multiple-plots-on-one-axis-through-loop-does-not-update-y-lim%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
Seems to me that the
set_ylim(bottom=0)
is the culprit. After commented it out it no longer creates the problem. It's strange that somehow the other parametertop
is also affected byset_ylim
although I did not specify a value for it.– Xiaoyu Lu
Nov 13 '18 at 17:17
Setting the limit (even one) for your y-axis will turn off autoscaling. I don't think there's any way to autoscale only one end of the axis limits.
– busybear
Nov 13 '18 at 19:46