[Matplotlib-users] Adding image to a plot

2014-03-01 Thread Asma Riyaz
Hi,

I am trying to insert a .png image to the right side of the plot and
following the code mentioned here:Combine picture and plot with Python
Matplotlib
Here is what I have tried:

import numpy as npfrom matplotlib.colors import
LinearSegmentedColormapimport matplotlib.pyplot as pltimport
matplotlib as mplimport matplotlib.cbook as cbookfrom matplotlib._png
import read_pngfrom matplotlib.offsetbox import OffsetImage
cmap = mpl.cm.hot
norm = mpl.colors.Normalize(vmin=-1 * outlier, vmax=outlier)
cmap.set_over('green')
cmap.set_under('green')
cmap.set_bad('green')
plt.xlim(0,35)
plt.ylim(0,35)
fig, ax = plt.subplots()
ax.set_aspect('equal')
cb_ax=fig.add_axes([0.85, 0.1, 0.03, 0.8])
img = ax.imshow(np.ma.masked_values(data, outlier), cmap=cmap,
norm=norm, interpolation='none',vmax=outlier)
cb = mpl.colorbar.ColorbarBase(cb_ax, cmap=cmap, norm=norm,
extend='both')##axim = plt.subplot2grid(shape, loc, rowspan=1)
## phlo tree
image_file = cbook.get_sample_data('mytree.png',asfileobj=False)
image = plt.imread(image_file)
phyl_ax=fig.add_axes([0.10,0.1, 0.03, 0.8])
phyl_ax.imshow(image,interpolation='nearest')

Th heat map would be on the left side and the image of a tree will be
inserted on the right side. The above code gives me the required heat
map but the image I am trying to add on the right side isn't
appearing. Can someone lead me as to how I can go about this?

Thanks
--
Flow-based real-time traffic analytics software. Cisco certified tool.
Monitor traffic, SLAs, QoS, Medianet, WAAS etc. with NetFlow Analyzer
Customize your own dashboards, set traffic alerts and generate reports.
Network behavioral analysis & security monitoring. All-in-one tool.
http://pubads.g.doubleclick.net/gampad/clk?id=126839071&iu=/4140/ostg.clktrk___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


[Matplotlib-users] Matplotlib + py3 + gtk3

2014-03-01 Thread Jon Roadley-Battin
>On 02/27/2014 06:58 PM, Jon Roadley-Battin wrote:
>> Good evening,
>>
>> I am at present migrating an application of mine from py27+pygtk (with
>> mpl) to py33+pygobject (gtk3)
>>
>> Unfortunately I am unable to use
>>
>> from  matplotlib.backends.backend_gtk3agg  import  FigureCanvasGTK3Agg
 as  FigureCanvas
>> from  matplotlib.backends.backend_gtk3  import  NavigationToolbar2GTK3
 as  NavigationToolbar
>>
>> Which is is on the examples (
>>
http://matplotlib.org/examples/user_interfaces/embedding_in_gtk3_panzoom.html
>> ) but is also the logical translation from what I presently have.
>> This falls fowl of the cairo issue
>>
>> What I am having to use is backend_gtk3cairo. However this is being
>> triggered
>>
>>  raise ValueError("The Cairo backend can not draw paths longer than
>> 18980 points.")
>>
>> I am generally plotting 7 x-y plots with upto 30,000 points.
>> Now for now I have commented this out from my local install, is there
>> a better/preferred/recommended alternative?
>
>This was put in there because cairo had (at least at the time) a hard
>coded limit on path size, and getting a Python exception was IMHO
>preferable to segfaulting and having the process go away.  Are you
>saying that when you comment it out, it's currently working?  It may be
>that cairo has fixed this limit in the intervening years. Can you
>provide a simple, standalone example that reproduces the error?


Using python33 & pygi-aio-3.10.2-win32_rev18 (to provide pygobject for
windows:)
Using:
http://matplotlib.org/examples/user_interfaces/embedding_in_gtk3_panzoom.htmlas
the baseline provides the following error:

<  File
"c:\Python33\lib\site-packages\matplotlib\backends\backend_gtk3agg.py",
line 52, in on_draw_event
buf, cairo.FORMAT_ARGB32, width, height)
NotImplementedError: Surface.create_for_data: Not Implemented yet.


This has been mentioned a few times across the ml

Modifying the example to use backend_gtk3cairo

from matplotlib.backends.backend_gtk3cairo import FigureCanvasGTK3Cairo as
FigureCanvas
from matplotlib.backends.backend_gtk3 import NavigationToolbar2GTK3 as
NavigationToolbar


Now the example runs and plots a nice sinewave (as expected). Modify the
script to plot 7 waveforms, 100pts

##
#!/usr/bin/env python3
"""
demonstrate NavigationToolbar with GTK3 accessed via pygobject
"""

from gi.repository import Gtk

from matplotlib.figure import Figure
import numpy as np
from matplotlib.backends.backend_gtk3cairo import FigureCanvasGTK3Cairo as
FigureCanvas
from matplotlib.backends.backend_gtk3 import NavigationToolbar2GTK3 as
NavigationToolbar


win = Gtk.Window()
win.connect("delete-event", Gtk.main_quit )
win.set_default_size(400,300)
win.set_title("Embedding in GTK")

fig = Figure(figsize=(5,4), dpi=100)
plt = fig.add_subplot(1,1,1)

t = np.arange(0,2*np.pi,2*np.pi/100)
a = np.sin(t + 0*(2*np.pi/7))
b = np.sin(t + 1*(2*np.pi/7))
c = np.sin(t + 2*(2*np.pi/7))
d = np.sin(t + 3*(2*np.pi/7))
e = np.sin(t + 4*(2*np.pi/7))
f = np.sin(t + 5*(2*np.pi/7))
g = np.sin(t + 6*(2*np.pi/7))
plt.plot(t,a)
plt.plot(t,b)
plt.plot(t,c)
plt.plot(t,d)
plt.plot(t,e)
plt.plot(t,f)
plt.plot(t,g)

vbox = Gtk.VBox()
win.add(vbox)

# Add canvas to vbox
canvas = FigureCanvas(fig)  # a Gtk.DrawingArea
vbox.pack_start(canvas, True, True, 0)

# Create toolbar
toolbar = NavigationToolbar(canvas, win)
vbox.pack_start(toolbar, False, False, 0)

win.show_all()
Gtk.main()


This works, its only 100pts for 7 scatters so nothing unexpected.
Modify the arange to create a time array of 30,000 pts.

t = np.arange(0,2*np.pi,2*np.pi/3)


  File
"c:\Python33\lib\site-packages\matplotlib\backends\backend_cairo.py", line
143, in draw_path
raise ValueError("The Cairo backend can not draw paths longer than
18980 points.")
ValueError: The Cairo backend can not draw paths longer than 18980 points.


The already mentioned raise to protect against a segfault.
Edit backend_cairo to comment out the check:


def draw_path(self, gc, path, transform, rgbFace=None):
#if len(path.vertices) > 18980:
#raise ValueError("The Cairo backend can not draw paths longer
than 18980 points.")

ctx = gc.ctx



7channel, 30,000 pts each is plotted just fine. Zoom rectangle is slow to
render, but this is true for 100pts (so more a gtk3 thing than a cairo and
multiple points thing)

Final script:



###
#!/usr/bin/env python3
"""
demonstrate NavigationToolbar with GTK3 accessed via pygobject
"""

from gi.repository import Gtk

from matplotlib.figure import Figure
import numpy as np
from matplotlib.backends.backend_gtk3cairo import FigureCanvasGTK3Cairo as
FigureCanvas   #changed to use gtk3cairo
fr

Re: [Matplotlib-users] How can I put a white area in the middle of colorbar showing the masked data?

2014-03-01 Thread Eric Firing
On 2014/03/01 11:03 AM, ChaoYue wrote:
> The most correct way might be to design a new colormap with white color
> exactly in the middle, however this is very tedious, especially if I
> want to try
> different colormaps. so the alternative approach would be to set the values
> falling in (-1,1) as being masked, so they will be the same as the axes
> background color as you mentioned (in our case it's white). My question is,
> how can I put this background color (which shows maksed data) in the
> colorbar,
> by avoiding design a new colormap?

It's not the answer you want to hear, but I think the correct answer is 
that you should do this via the colormap, and not by masking the low 
values.  It doesn't have to be painful.  If, in contourf, you use a 
diverging colormap with white already in the middle 
(http://matplotlib.org/examples/color/colormaps_reference.html) and a 
norm with symmetric limits (vmin and vmax; you can let them be set 
automatically after you specify your symmetric set of contour boundaries 
appropriately) then it will be done for you.

e.g.,

z = 10 * np.random.randn(20, 30)
clevs = [-10, -5, -2, -1, 1, 2, 5, 10]
cs = plt.contourf(z, levels=clevs, cmap=plt.get_cmap('PRGn'),
   extend='both')
cbar = plt.colorbar(cs, spacing='uniform')

Eric

--
Flow-based real-time traffic analytics software. Cisco certified tool.
Monitor traffic, SLAs, QoS, Medianet, WAAS etc. with NetFlow Analyzer
Customize your own dashboards, set traffic alerts and generate reports.
Network behavioral analysis & security monitoring. All-in-one tool.
http://pubads.g.doubleclick.net/gampad/clk?id=126839071&iu=/4140/ostg.clktrk
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


Re: [Matplotlib-users] How can I put a white area in the middle of colorbar showing the masked data?

2014-03-01 Thread ChaoYue
Hi Eric,

thanks for answering. I updated the attached figure.
The idea is, we want to show the tree cover difference, but to make
the negative and positive values very contrastive, we would like to
assign the values falling in small range of change (in the figure, it's -1
to 1)
as blank (or gray), in order to make the remaining data constrasting
different.


The most correct way might be to design a new colormap with white color
exactly in the middle, however this is very tedious, especially if I want
to try
different colormaps. so the alternative approach would be to set the values
falling in (-1,1) as being masked, so they will be the same as the axes
background color as you mentioned (in our case it's white). My question is,
how can I put this background color (which shows maksed data) in the
colorbar,
by avoiding design a new colormap?


Then I notice in the colormap methos there is one called "set_bad", I guess
this
is for this purpose, as in the case of "set_over" and "set_under", which
will
influence the colors in the colorbar when you later call the colorbar
method.
But is it not like this?

I invented an example like below:

import numpy as np
import matplotlib as mat
import matplotlib.pyplot as plt

data = np.random.random(1).reshape(100,100) - 0.5
data_masked = np.ma.masked_inside(data,-0.05,0.05)
cmap = mat.cm.jet
cmap.set_bad('0.5')
fig,ax = plt.subplots(1,1)
lev = [-0.5,-0.4,-0.3,-0.2,-0.1,-0.05,0,0.05,0.1,0.2,0.3,0.4,0.5]
cas = ax.contourf(data_masked,levels=lev,cmap=cmap)
plt.colorbar(cas,ticks=lev)

In this example, how can I make the colors between -0.05 to 0.05 as white,
if I don't want to bother write a new colormap.

Thanks a lot for your time, I hope this case could be useful for others as I
am sure it's very widely used in geographic related sciences.


Cheers,

Chao



On Sat, Mar 1, 2014 at 9:16 PM, Eric Firing [via matplotlib] <
ml-node+s1069221n42950...@n5.nabble.com> wrote:

> On 2014/03/01 9:57 AM, Chao YUE wrote:
>
> > Dear all,
> >
> > In many cases in geoscience mapping we want to show the some missing
> values
> > as some special color in the colorbar. like attached one.
> >
> > I know there is one method in matplotlib colormap called "set_bad",
> official
> > docs says:
> >
> > Set color to be used for masked values.
> >
> > But I don't know how to make this work when I call the colorbar method.
>
> It is not a matter of calling the colorbar method, but of setting up the
> colormap used on the color-mapped plot for which the colorbar is made.
>
> The one wrinkle to this is that if you are using contourf, the masked
> regions are not filled at all, so they take on the color of the
> background.  To give them the color you assigned to the colormap with
> set_bad, you need to assign that same color to the background, e.g.
>
> ax.set_axis_bgcolor("#bdb76b")
>
> On re-reading your message, however, I think you are asking something
> else, but it is not clear to me from your example exactly what you are
> trying to do.
>
> The colorbar is strictly for a range or sequence of colors, which can
> include triangle regions for the "over" and "under" values; there is no
> place on the colorbar for a "bad" or "missing" value.  Where would you
> put one?  I don't see any such region on the example colorbar you
> attached.
>
> Eric
>
>
>
> > Is there anyone who have the some successful experience?
> >
> > Thanks a lot in advance!
> >
> > Chao
> > --
> >
> ***
>
> > Chao YUE
> > Laboratoire des Sciences du Climat et de l'Environnement (LSCE-IPSL)
> > UMR 1572 CEA-CNRS-UVSQ
> > Batiment 712 - Pe 119
> > 91191 GIF Sur YVETTE Cedex
> > Tel: (33) 01 69 08 29 02; Fax:01.69.08.77.16
> >
> 
>
> >
> >
> >
> --
>
> > Flow-based real-time traffic analytics software. Cisco certified tool.
> > Monitor traffic, SLAs, QoS, Medianet, WAAS etc. with NetFlow Analyzer
> > Customize your own dashboards, set traffic alerts and generate reports.
> > Network behavioral analysis & security monitoring. All-in-one tool.
> >
> http://pubads.g.doubleclick.net/gampad/clk?id=126839071&iu=/4140/ostg.clktrk
> >
> >
> >
> > ___
> > Matplotlib-users mailing list
> > [hidden email] 
> > https://lists.sourceforge.net/lists/listinfo/matplotlib-users
> >
>
>
> --
>
> Flow-based real-time traffic analytics software. Cisco certified tool.
> Monitor traffic, SLAs, QoS, Medianet, WAAS etc. with NetFlow Analyzer
> Customize your own dashboards, set traffic alerts and generate reports.
> Network behavioral analysis & security monitoring. All-in-one tool.
>
> http://pubads.g.doubleclick.net/gampad/clk?id=126839071&iu=/4140

Re: [Matplotlib-users] How can I put a white area in the middle of colorbar showing the masked data?

2014-03-01 Thread Eric Firing
On 2014/03/01 9:57 AM, Chao YUE wrote:
> Dear all,
>
> In many cases in geoscience mapping we want to show the some missing values
> as some special color in the colorbar. like attached one.
>
> I know there is one method in matplotlib colormap called "set_bad", official
> docs says:
>
> Set color to be used for masked values.
>
> But I don't know how to make this work when I call the colorbar method.

It is not a matter of calling the colorbar method, but of setting up the 
colormap used on the color-mapped plot for which the colorbar is made.

The one wrinkle to this is that if you are using contourf, the masked 
regions are not filled at all, so they take on the color of the 
background.  To give them the color you assigned to the colormap with 
set_bad, you need to assign that same color to the background, e.g.

ax.set_axis_bgcolor("#bdb76b")

On re-reading your message, however, I think you are asking something 
else, but it is not clear to me from your example exactly what you are 
trying to do.

The colorbar is strictly for a range or sequence of colors, which can 
include triangle regions for the "over" and "under" values; there is no 
place on the colorbar for a "bad" or "missing" value.  Where would you 
put one?  I don't see any such region on the example colorbar you attached.

Eric



> Is there anyone who have the some successful experience?
>
> Thanks a lot in advance!
>
> Chao
> --
> ***
> Chao YUE
> Laboratoire des Sciences du Climat et de l'Environnement (LSCE-IPSL)
> UMR 1572 CEA-CNRS-UVSQ
> Batiment 712 - Pe 119
> 91191 GIF Sur YVETTE Cedex
> Tel: (33) 01 69 08 29 02; Fax:01.69.08.77.16
> 
>
>
> --
> Flow-based real-time traffic analytics software. Cisco certified tool.
> Monitor traffic, SLAs, QoS, Medianet, WAAS etc. with NetFlow Analyzer
> Customize your own dashboards, set traffic alerts and generate reports.
> Network behavioral analysis & security monitoring. All-in-one tool.
> http://pubads.g.doubleclick.net/gampad/clk?id=126839071&iu=/4140/ostg.clktrk
>
>
>
> ___
> Matplotlib-users mailing list
> Matplotlib-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/matplotlib-users
>


--
Flow-based real-time traffic analytics software. Cisco certified tool.
Monitor traffic, SLAs, QoS, Medianet, WAAS etc. with NetFlow Analyzer
Customize your own dashboards, set traffic alerts and generate reports.
Network behavioral analysis & security monitoring. All-in-one tool.
http://pubads.g.doubleclick.net/gampad/clk?id=126839071&iu=/4140/ostg.clktrk
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


Re: [Matplotlib-users] How can I put a white area in the middle of colorbar showing the masked data?

2014-03-01 Thread Chao YUE
sorry, the attached file may lack surfix type, here is the correct one.

Cheers,

chao


On Sat, Mar 1, 2014 at 8:57 PM, Chao YUE  wrote:

> Dear all,
>
> In many cases in geoscience mapping we want to show the some missing values
> as some special color in the colorbar. like attached one.
>
> I know there is one method in matplotlib colormap called "set_bad",
> official
> docs says:
>
> Set color to be used for masked values.
>
> But I don't know how to make this work when I call the colorbar method.
> Is there anyone who have the some successful experience?
>
> Thanks a lot in advance!
>
> Chao
> --
>
> ***
> Chao YUE
> Laboratoire des Sciences du Climat et de l'Environnement (LSCE-IPSL)
> UMR 1572 CEA-CNRS-UVSQ
> Batiment 712 - Pe 119
> 91191 GIF Sur YVETTE Cedex
> Tel: (33) 01 69 08 29 02; Fax:01.69.08.77.16
>
> 
>



-- 
***
Chao YUE
Laboratoire des Sciences du Climat et de l'Environnement (LSCE-IPSL)
UMR 1572 CEA-CNRS-UVSQ
Batiment 712 - Pe 119
91191 GIF Sur YVETTE Cedex
Tel: (33) 01 69 08 29 02; Fax:01.69.08.77.16

<>--
Flow-based real-time traffic analytics software. Cisco certified tool.
Monitor traffic, SLAs, QoS, Medianet, WAAS etc. with NetFlow Analyzer
Customize your own dashboards, set traffic alerts and generate reports.
Network behavioral analysis & security monitoring. All-in-one tool.
http://pubads.g.doubleclick.net/gampad/clk?id=126839071&iu=/4140/ostg.clktrk___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


[Matplotlib-users] How can I put a white area in the middle of colorbar showing the masked data?

2014-03-01 Thread Chao YUE
Dear all,

In many cases in geoscience mapping we want to show the some missing values
as some special color in the colorbar. like attached one.

I know there is one method in matplotlib colormap called "set_bad", official
docs says:

Set color to be used for masked values.

But I don't know how to make this work when I call the colorbar method.
Is there anyone who have the some successful experience?

Thanks a lot in advance!

Chao
-- 
***
Chao YUE
Laboratoire des Sciences du Climat et de l'Environnement (LSCE-IPSL)
UMR 1572 CEA-CNRS-UVSQ
Batiment 712 - Pe 119
91191 GIF Sur YVETTE Cedex
Tel: (33) 01 69 08 29 02; Fax:01.69.08.77.16



colorbar_eg
Description: Binary data
--
Flow-based real-time traffic analytics software. Cisco certified tool.
Monitor traffic, SLAs, QoS, Medianet, WAAS etc. with NetFlow Analyzer
Customize your own dashboards, set traffic alerts and generate reports.
Network behavioral analysis & security monitoring. All-in-one tool.
http://pubads.g.doubleclick.net/gampad/clk?id=126839071&iu=/4140/ostg.clktrk___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users