SourceForge logo
SourceForge logo
Menu

matplotlib-users — Discussion related to using matplotlib

You can subscribe to this list here.

2003 Jan
Feb
Mar
Apr
May
(3)
Jun
Jul
Aug
(12)
Sep
(12)
Oct
(56)
Nov
(65)
Dec
(37)
2004 Jan
(59)
Feb
(78)
Mar
(153)
Apr
(205)
May
(184)
Jun
(123)
Jul
(171)
Aug
(156)
Sep
(190)
Oct
(120)
Nov
(154)
Dec
(223)
2005 Jan
(184)
Feb
(267)
Mar
(214)
Apr
(286)
May
(320)
Jun
(299)
Jul
(348)
Aug
(283)
Sep
(355)
Oct
(293)
Nov
(232)
Dec
(203)
2006 Jan
(352)
Feb
(358)
Mar
(403)
Apr
(313)
May
(165)
Jun
(281)
Jul
(316)
Aug
(228)
Sep
(279)
Oct
(243)
Nov
(315)
Dec
(345)
2007 Jan
(260)
Feb
(323)
Mar
(340)
Apr
(319)
May
(290)
Jun
(296)
Jul
(221)
Aug
(292)
Sep
(242)
Oct
(248)
Nov
(242)
Dec
(332)
2008 Jan
(312)
Feb
(359)
Mar
(454)
Apr
(287)
May
(340)
Jun
(450)
Jul
(403)
Aug
(324)
Sep
(349)
Oct
(385)
Nov
(363)
Dec
(437)
2009 Jan
(500)
Feb
(301)
Mar
(409)
Apr
(486)
May
(545)
Jun
(391)
Jul
(518)
Aug
(497)
Sep
(492)
Oct
(429)
Nov
(357)
Dec
(310)
2010 Jan
(371)
Feb
(657)
Mar
(519)
Apr
(432)
May
(312)
Jun
(416)
Jul
(477)
Aug
(386)
Sep
(419)
Oct
(435)
Nov
(320)
Dec
(202)
2011 Jan
(321)
Feb
(413)
Mar
(299)
Apr
(215)
May
(284)
Jun
(203)
Jul
(207)
Aug
(314)
Sep
(321)
Oct
(259)
Nov
(347)
Dec
(209)
2012 Jan
(322)
Feb
(414)
Mar
(377)
Apr
(179)
May
(173)
Jun
(234)
Jul
(295)
Aug
(239)
Sep
(276)
Oct
(355)
Nov
(144)
Dec
(108)
2013 Jan
(170)
Feb
(89)
Mar
(204)
Apr
(133)
May
(142)
Jun
(89)
Jul
(160)
Aug
(180)
Sep
(69)
Oct
(136)
Nov
(83)
Dec
(32)
2014 Jan
(71)
Feb
(90)
Mar
(161)
Apr
(117)
May
(78)
Jun
(94)
Jul
(60)
Aug
(83)
Sep
(102)
Oct
(132)
Nov
(154)
Dec
(96)
2015 Jan
(45)
Feb
(138)
Mar
(176)
Apr
(132)
May
(119)
Jun
(124)
Jul
(77)
Aug
(31)
Sep
(34)
Oct
(22)
Nov
(23)
Dec
(9)
2016 Jan
(26)
Feb
(17)
Mar
(10)
Apr
(8)
May
(4)
Jun
(8)
Jul
(6)
Aug
(5)
Sep
(9)
Oct
(4)
Nov
Dec
2017 Jan
(5)
Feb
(7)
Mar
(1)
Apr
(5)
May
Jun
(3)
Jul
(6)
Aug
(1)
Sep
Oct
(2)
Nov
(1)
Dec
2018 Jan
Feb
Mar
Apr
(1)
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
2020 Jan
Feb
Mar
Apr
May
(1)
Jun
Jul
Aug
Sep
Oct
Nov
Dec
2025 Jan
(1)
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
S M T W T F S





1
(8)
2
(2)
3
(1)
4
(2)
5
(15)
6
(12)
7
(10)
8
(2)
9
(5)
10
(5)
11
(8)
12
(12)
13
(26)
14
(10)
15
(11)
16
(2)
17
(3)
18
(19)
19
(25)
20
(11)
21
(8)
22
(8)
23
(2)
24
25
(8)
26
(4)
27
(2)
28
(5)
29
(3)
30
(5)

Showing 2 results of 2

From: Joe K. <jki...@wi...> - 2012年06月17日 17:31:31
It sounds like you were using the right approach, you just got a bit lost
on what some of the keyword parameters to annotate, etc do.
Here's an example that should do what you want:
import matplotlib.pyplot as plt
from matplotlib.ticker import MultipleLocator
fig, ax = plt.subplots()
# Set the axis limits as you wanted...
ax.set_ylim([-0.6, 1.1])
# Set major and minor tick intervals
# We could just set the tick locations manually, but this way you'll keep
the
# same intervals when you zoom/pan/etc.
ax.yaxis.set_major_locator(MultipleLocator(1))
ax.yaxis.set_minor_locator(MultipleLocator(0.1))
# Make the bottom spine "float" instead of being at the bottom of the plot
ax.spines['bottom'].set_position(('data', 0))
# Hide the top and right spines (Similar to your sketch)
for position in ['right', 'top']:
 ax.spines[position].set_visible(False)
# Turn off the top, right, and bottom major and minor ticks (as in your
sketch)
ax.tick_params(which='both', top=False, right=False, bottom=False,
 labelbottom=False)
# Draw a 15 point long arrow that will always be at the top-left corner of
# the axes. The key is that we're specifying a location of (0,1) in
# "axes fraction" coordinates. We then place an empty text string 15
_points_
# above this (the `xytext` parameter controls the amount, `textcoords`
controls
# how it's interpreted). Then, we draw an arrow connecting the top left
corner
# of the axes to the (empty and not drawn) text string.
ax.annotate('', xy=(0,1), xycoords='axes fraction', xytext=(0,15),
 textcoords='offset points', ha='center',
 arrowprops=dict(arrowstyle='<|-', shrinkA=0, shrinkB=0,
 facecolor='black'))
plt.show()
Hope that helps!
-Joe
On Fri, Jun 15, 2012 at 7:34 AM, Asbach, Mark <
mar...@ia...> wrote:
> Hi there,
>
> I'm sorry to ask such a newbie question, but I'd like to format a custom
> box plot and although there are numerous examples on the web and tons of
> docstrings in matplotlib, I'm stuck somehow. My problems center around axes
> / spines. In detail, my problems are:
>
> 1) I want an y-axis on the left that spans from -0.6 to 1.1, ends in an
> arrow, has major ticks at 0 and 1 and minor ticks at [0.1...0.9]
> As far as I understand, there is no option to let spines end in an arrow
> head, so I have to draw the myself. I get the ticks to appear at the right
> positions and the y-range to be as desired - however, the spine line is not
> drawn over the full y-range, but only where there is data in the diagram.
> Also, I copied the arrow annotation code blindly from an older post on this
> list, but do not understand how I can adapt the arrow head to appear at a
> data position (instead of at the corner of the Axes area). One problem is,
> that I get ticks on the right although that spine was disabled.
>
> 2) I want some kind of x-axis at y==0, without ticks and without arrow
> Using some methods on the spines, I can disable the top spine and move the
> bottom spine to zero. However, as with the y-axis, I cannot control from
> where to where the line itself is drawn.
>
> As attachments, you'll find a hand sketch of what my graph should look
> like and matplotlib code that goes nearly all the way.
>
> I would be very happy about a hint on how to fix the problems left.
>
> Thanks an advance,
> Mark
>
>
>
> ------------------------------------------------------------------------------
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
>
> _______________________________________________
> Matplotlib-users mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-users
>
>
From: ananduri <aru...@gm...> - 2012年06月17日 04:35:23
Thanks Ben and Francesco. The zorder option didn't work, I'll use mayavi or
try to make it work as is. And as for setting the z axis limits, I found
that that line has to be placed after all plotting commands in the script.
Benjamin Root-2 wrote:
> 
> Ananduri,
> 
> On Fri, Jun 15, 2012 at 8:47 AM, ananduri <aru...@gm...> wrote:
> 
>>
>> Hello,
>>
>> I have some minor questions regarding matplotlib. I'm using it to make a
>> 3d
>> plot, displaying a surface, it's contour map, a line climbing the surface
>> and its projection onto the contour map.
>>
>> http://old.nabble.com/file/p34015720/landscape_draft.pnglandscape_draft.png
>>
>> As you can see, when the lines cross the contourf, they are somewhat
>> obscured. Before I made the contourf transparent, the lines were blocked,
>> even though they were above the contour plot when I viewed the picture
>> from
>> a different angle. Can this be fixed? I want the lines to appear on top
>> of
>> the contour plot.
>>
>>
> Unfortunately, no. Matplotlib was originally designed as a 2D layering
> renderer. The mplot3d toolkit tries to work within that framework, but in
> the end, each artist object has to be represented by a single 3rd
> dimension
> coordinate (the layer), and so when two artists share bounding box
> regions,
> physically incorrect results will happen. Please see this FAQ:
> 
> http://matplotlib.sourceforge.net/mpl_toolkits/mplot3d/faq.html#my-3d-plot-doesn-t-look-right-at-certain-viewing-angles
> 
> 
> 
>> Also, I am trying to extend the z axis to be lower. This is most of the
>> code
>> I'm using:
>>
>> fig=plt.figure(1)
>> ax=fig.gca(projection='3d')
>>
>> x=np.arange(0,2.5,.02)
>> y=np.arange(0,2.3,.02)
>> x,y=np.meshgrid(x,y)
>>
>> ax.plot_surface(x,y,Z(x,y),alpha=0.3)
>>
>> cset=ax.contourf(x,y,Z(x,y),zdir='z',offset=-2,
>> cmap=plt.cm.jet,levels=np.linspace(0,9,100),alpha=0.5)
>>
>> ax.set_xlabel('x')
>> ax.set_ylabel('y')
>>
>> ax.set_zlim(-2,8) #This is where I try to change the z axis limits.
>>
>> plt.show()
>>
>> I'm excluding the code which plots the lines. ax.set_zlim doesn't do
>> anything; why is this?
>>
> 
> That would depend on which version of matplotlib you are using. The
> v1.1.x
> branch should have that working properly.
> 
> Cheers!
> Ben Root
> 
> ------------------------------------------------------------------------------
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and 
> threat landscape has changed and how IT managers can respond. Discussions 
> will include endpoint security, mobile security and the latest in malware 
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> _______________________________________________
> Matplotlib-users mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-users
> 
> 
-- 
View this message in context: http://old.nabble.com/3d-contourf-and-ax.set-tp34015720p34024704.html
Sent from the matplotlib - users mailing list archive at Nabble.com.
1 message has been excluded from this view by a project administrator.

Showing 2 results of 2

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.
Thanks for helping keep SourceForge clean.
X





Briefly describe the problem (required):
Upload screenshot of ad (required):
Select a file, or drag & drop file here.
Screenshot instructions:

Click URL instructions:
Right-click on the ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)

More information about our ad policies

Ad destination/click URL:

AltStyle によって変換されたページ (->オリジナル) /