Irregular spacing pcolor plot in pythonCalling an external command in PythonWhat are metaclasses in Python?Finding the index of an item given a list containing it in PythonWhat is the difference between Python's list methods append and extend?How can I safely create a nested directory?Does Python have a ternary conditional operator?How to get the current time in PythonHow to print without newline or space?How can I make a time delay in Python?Does Python have a string 'contains' substring method?
This LM317 diagram doesn't make any sense to me
How do I explain that I don't want to maintain old projects?
If props is missing Should I use memo?
Moving millions of files to a different directory with specfic name patterns
How to find the positions of replaced elements in a list
Generalized Behrend version for Grothendieck-Lefschetz trace formula
Swapping "Good" and "Bad"
What are the effects of abstaining from eating a certain flavor?
Do we know SL(2,C) subgroups (not only finite ones)?
Would a Nikon FG 20 film SLR camera take pictures without batteries?
Why does Trump want a citizenship question on the census?
How do you move up one folder in Finder?
how does the Raspberry Pi PoE shield work?
Run Bash scripts in folder all at the same time
An integral that needs subtitution to be solved.
VHF 50 Ω Antenna Over 75 Ω TV Coax
Is there a strong legal guarantee that the U.S. can give to another country that it won't attack them?
Why different specifications for telescopes and binoculars?
Object's height not a multiple of layer height
Why is the Cauchy Distribution is so useful?
When I press the space bar it deletes the letters in front of it
How many tone holes are there actually in different orchestral woodwind instruments?
When did "&" stop being taught alongside the alphabet?
What factors could lead to bishops establishing monastic armies?
Irregular spacing pcolor plot in python
Calling an external command in PythonWhat are metaclasses in Python?Finding the index of an item given a list containing it in PythonWhat is the difference between Python's list methods append and extend?How can I safely create a nested directory?Does Python have a ternary conditional operator?How to get the current time in PythonHow to print without newline or space?How can I make a time delay in Python?Does Python have a string 'contains' substring method?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
The following python code works:
import numpy as np
import matplotlib.pyplot as P
from matplotlib.colors import LogNorm
# A is a matrix of dimension [101,1000]
X, Y = np.mgrid[0:100:100.0/101, -5:20:25.0/1000]
P.pcolor(X, Y, A, norm=LogNorm(vmin=np.min(A), vmax=np.max(A)), cmap='PuBu_r')
P.colorbar()
However what I would like is to plot the same colorplot data but with a different X axis. I would like the first 50 points in X to be between 0 and 50 and the last 51 points to be between 50 and 150 (non regular grid). The actual A matrix is on that grid 0-150 and not on the 0-100 grid that I currently plot.
I tried to interpolate the data with griddata but was unsuccessful. Any suggestions for an elegant way to do this ?
Thanks a lot,
Sam
python matplotlib interpolation
add a comment |
The following python code works:
import numpy as np
import matplotlib.pyplot as P
from matplotlib.colors import LogNorm
# A is a matrix of dimension [101,1000]
X, Y = np.mgrid[0:100:100.0/101, -5:20:25.0/1000]
P.pcolor(X, Y, A, norm=LogNorm(vmin=np.min(A), vmax=np.max(A)), cmap='PuBu_r')
P.colorbar()
However what I would like is to plot the same colorplot data but with a different X axis. I would like the first 50 points in X to be between 0 and 50 and the last 51 points to be between 50 and 150 (non regular grid). The actual A matrix is on that grid 0-150 and not on the 0-100 grid that I currently plot.
I tried to interpolate the data with griddata but was unsuccessful. Any suggestions for an elegant way to do this ?
Thanks a lot,
Sam
python matplotlib interpolation
1
Check e.g.X, Y = np.meshgrid([1,5,12,30,50], [1,2,3,4,5])
and adapt it too your needs.
– ImportanceOfBeingErnest
Mar 26 at 0:04
Thanks for the answer. It works but you need to do X.T and Y.T because meshgrid return the transpose of what you get with mgrid.
– sponce
Mar 26 at 0:18
Not really, it's rather thatX,Y = meshgrid(x,y)
, so you need to mind the order of arguments.
– ImportanceOfBeingErnest
Mar 26 at 0:38
Check this website louistiao.me/posts/numpy-mgrid-vs-meshgrid seems it returns the transpose of the other.
– sponce
Mar 27 at 9:15
add a comment |
The following python code works:
import numpy as np
import matplotlib.pyplot as P
from matplotlib.colors import LogNorm
# A is a matrix of dimension [101,1000]
X, Y = np.mgrid[0:100:100.0/101, -5:20:25.0/1000]
P.pcolor(X, Y, A, norm=LogNorm(vmin=np.min(A), vmax=np.max(A)), cmap='PuBu_r')
P.colorbar()
However what I would like is to plot the same colorplot data but with a different X axis. I would like the first 50 points in X to be between 0 and 50 and the last 51 points to be between 50 and 150 (non regular grid). The actual A matrix is on that grid 0-150 and not on the 0-100 grid that I currently plot.
I tried to interpolate the data with griddata but was unsuccessful. Any suggestions for an elegant way to do this ?
Thanks a lot,
Sam
python matplotlib interpolation
The following python code works:
import numpy as np
import matplotlib.pyplot as P
from matplotlib.colors import LogNorm
# A is a matrix of dimension [101,1000]
X, Y = np.mgrid[0:100:100.0/101, -5:20:25.0/1000]
P.pcolor(X, Y, A, norm=LogNorm(vmin=np.min(A), vmax=np.max(A)), cmap='PuBu_r')
P.colorbar()
However what I would like is to plot the same colorplot data but with a different X axis. I would like the first 50 points in X to be between 0 and 50 and the last 51 points to be between 50 and 150 (non regular grid). The actual A matrix is on that grid 0-150 and not on the 0-100 grid that I currently plot.
I tried to interpolate the data with griddata but was unsuccessful. Any suggestions for an elegant way to do this ?
Thanks a lot,
Sam
python matplotlib interpolation
python matplotlib interpolation
asked Mar 25 at 23:09
sponcesponce
4051 gold badge4 silver badges14 bronze badges
4051 gold badge4 silver badges14 bronze badges
1
Check e.g.X, Y = np.meshgrid([1,5,12,30,50], [1,2,3,4,5])
and adapt it too your needs.
– ImportanceOfBeingErnest
Mar 26 at 0:04
Thanks for the answer. It works but you need to do X.T and Y.T because meshgrid return the transpose of what you get with mgrid.
– sponce
Mar 26 at 0:18
Not really, it's rather thatX,Y = meshgrid(x,y)
, so you need to mind the order of arguments.
– ImportanceOfBeingErnest
Mar 26 at 0:38
Check this website louistiao.me/posts/numpy-mgrid-vs-meshgrid seems it returns the transpose of the other.
– sponce
Mar 27 at 9:15
add a comment |
1
Check e.g.X, Y = np.meshgrid([1,5,12,30,50], [1,2,3,4,5])
and adapt it too your needs.
– ImportanceOfBeingErnest
Mar 26 at 0:04
Thanks for the answer. It works but you need to do X.T and Y.T because meshgrid return the transpose of what you get with mgrid.
– sponce
Mar 26 at 0:18
Not really, it's rather thatX,Y = meshgrid(x,y)
, so you need to mind the order of arguments.
– ImportanceOfBeingErnest
Mar 26 at 0:38
Check this website louistiao.me/posts/numpy-mgrid-vs-meshgrid seems it returns the transpose of the other.
– sponce
Mar 27 at 9:15
1
1
Check e.g.
X, Y = np.meshgrid([1,5,12,30,50], [1,2,3,4,5])
and adapt it too your needs.– ImportanceOfBeingErnest
Mar 26 at 0:04
Check e.g.
X, Y = np.meshgrid([1,5,12,30,50], [1,2,3,4,5])
and adapt it too your needs.– ImportanceOfBeingErnest
Mar 26 at 0:04
Thanks for the answer. It works but you need to do X.T and Y.T because meshgrid return the transpose of what you get with mgrid.
– sponce
Mar 26 at 0:18
Thanks for the answer. It works but you need to do X.T and Y.T because meshgrid return the transpose of what you get with mgrid.
– sponce
Mar 26 at 0:18
Not really, it's rather that
X,Y = meshgrid(x,y)
, so you need to mind the order of arguments.– ImportanceOfBeingErnest
Mar 26 at 0:38
Not really, it's rather that
X,Y = meshgrid(x,y)
, so you need to mind the order of arguments.– ImportanceOfBeingErnest
Mar 26 at 0:38
Check this website louistiao.me/posts/numpy-mgrid-vs-meshgrid seems it returns the transpose of the other.
– sponce
Mar 27 at 9:15
Check this website louistiao.me/posts/numpy-mgrid-vs-meshgrid seems it returns the transpose of the other.
– sponce
Mar 27 at 9:15
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%2f55347673%2firregular-spacing-pcolor-plot-in-python%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
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
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%2f55347673%2firregular-spacing-pcolor-plot-in-python%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
1
Check e.g.
X, Y = np.meshgrid([1,5,12,30,50], [1,2,3,4,5])
and adapt it too your needs.– ImportanceOfBeingErnest
Mar 26 at 0:04
Thanks for the answer. It works but you need to do X.T and Y.T because meshgrid return the transpose of what you get with mgrid.
– sponce
Mar 26 at 0:18
Not really, it's rather that
X,Y = meshgrid(x,y)
, so you need to mind the order of arguments.– ImportanceOfBeingErnest
Mar 26 at 0:38
Check this website louistiao.me/posts/numpy-mgrid-vs-meshgrid seems it returns the transpose of the other.
– sponce
Mar 27 at 9:15