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
|
From: Karl-Heinz G. <gl...@kh...> - 2004-08-21 10:13:52
|
Hallo, it seems to me that the scaling of the Y-axis gets wrong if the y-values are below 1e-4. (Release 0.61.0, OS=Windows 2000 SP4, Python 2.3.4, actual wxPython Release) The previous release did not show this behavior. Example Code: import wx import matplotlib matplotlib.use('WXAgg') #with TK it is the same... from matplotlib.matlab import * t1 = arange(0.0, 5.0, 0.1) figure(1) subplot(211) plot(t2, cos(2*pi*t2), 'r') grid(1) ylabel('As expected') title('Y-axis scaling OK') subplot(212) plot(t2, 1e-4*cos(2*pi*t2), 'r') ylabel('A lot of zeros') title('Y-axis scaling wrong, should be 1e-4') grid(1) show() Here you can find a screenshot (about 50 kByte) at http://home.arcor.de/glahe/Screenshot.jpg Best regards, Kalle. |
From: John H. <jdh...@ac...> - 2004-08-20 19:51:33
|
>>>>> "Thomas" == Thomas Barket <tho...@ya...> writes: Thomas> John, Tks again for your help. I thought that you were Thomas> running that script in plain old ipython. I didn't Thomas> realize ipython-gtk was different from ipython. After Thomas> reading your last message, I downloaded and began using Thomas> ipython 0.6.2 for python 2.3. I thought ipython-gtk was Thomas> some linux variant of ipython (im on windows xp). I Thomas> appreciate now that it is a different animal entirely. My Thomas> mix-up on that. Sorry for the confusion. Thomas> There is no mention of ipython-gtk or pyint-gtk on the Thomas> ipython.scipy.org web site. Is there any documentation Thomas> yet that I can see, perhaps tucked away in a cvs branch Thomas> somewhere? Thomas> I have enough to get going now. No you don't! ipython 0.6.2 *will not work* with interactive matplotlib/gtk. ipython-gtk is not mentioned on the ipython site because it is not in the main release yet. It is only in CVS (and requires matplotlib CVS as well) and is not yet fully functional. That is why I recommended to use pyint-gtk.py and included it in my email, which was written by Fernando as an ipython-gtk prototyping script. pyint-gtk.py will work with the current matplotlib/gtk and requires no extra packages. Keep your eyes on this list in the next few weeks for a fully functional, integrated, ipython-gtk. Sorry for the complexity - you're just coming into an area that is being actively developed and changing almost daily. JDH |
From: Thomas B. <tho...@ya...> - 2004-08-20 19:38:59
|
John, Tks again for your help. I thought that you were running that script in plain old ipython. I didn't realize ipython-gtk was different from ipython. After reading your last message, I downloaded and began using ipython 0.6.2 for python 2.3. I thought ipython-gtk was some linux variant of ipython (im on windows xp). I appreciate now that it is a different animal entirely. My mix-up on that. Sorry for the confusion. There is no mention of ipython-gtk or pyint-gtk on the ipython.scipy.org web site. Is there any documentation yet that I can see, perhaps tucked away in a cvs branch somewhere? I have enough to get going now. Tks again, Tom -----Original Message----- From: John Hunter [mailto:jdh...@ac...] Sent: Friday, August 20, 2004 8:36 AM To: Thomas Barket Cc: mat...@li... Subject: Re: [Matplotlib-users] Requesting advice on multi-threaded matplotlib session + grids displaying data >>>>> "Thomas" == Thomas Barket <tho...@ya...> writes: Thomas> John, That makes sense. Tks vm. Thomas> I am still confused on what approach needs to be taken to Thomas> get the data grids to be *interactive* from the python Thomas> command prompt. It seems to me that such interactivity Thomas> requires threading (ie, creating any new data grid gui Thomas> window in its own thread). Is that correct, or is there Thomas> some other way to do it? OK, I appreciate that it's confusing. It's not an easy subject. I suggest you give http://matplotlib.sourceforge.net/interactive.html and http://matplotlib.sourceforge.net/faq.html#SHOW another reading because your comments below indicate you haven't fully digested that material. I take full responsibility for this, however, because I wrote the docs! I'll elaborate somewhat. First a reminder which I think you already understand: matplotlib has an interactive mode and a non-interactive mode. You want to use the interactive mode, set 'interactive : True' in your rc file. In interactive mode do not call show, ever. OK. Your real problem is how to start the mainloop vis-a-vis threading. The answer is (for gtk/gtkagg), use a custom python shell for pygtk. The idea here is that the custom shell starts the mainloop for you. When you import matplotlib with interactive on from one of these shells, the mainloop is already started in a separate thread, and you can issue plot commands and get immediate responses without losing control of the prompt. Of course, you can launch other gtk windows and widgets too. There are a variety of python shells out there for pygtk, but I strongly recommend you start with Fernando Perez's pyint-gtk.py. If you notice in my last post to you, I wrote > Here is an example using Fernando's ipython-gtk ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ > hunter:~/python/examples/pygtk> python ~/tmp/ip/ipython-gtk.py > Python 2.3.2 (#1, Oct 13 2003, 11:33:15) > [GCC 3.3.1] on linux2 > Type "copyright", "credits" or "license" for more information. > (MatplotlibShell) > 1 >>> from matplotlib.numerix import rand > 2 >>> from array_to_grid import view_array > 3 >>> view_array( rand(20,10)) > Out[3]: <ArrayView object (GtkWindow) at 0x4136db94> I would have emphasized that but I wrongly assumed you knew you needed a threaded GTK shell. I guess I've been doing this too long :-) pyint-gtk.py is just a temporary proof-of-concept to lay the groundwork for ipython-gtk, which will be a full featured ipython shell with gtk/matplotlib support. If you haven't checked out ipython, you should, as it's *very nice* for interactive work. Nonetheless, the current release of ipython doesn't support gtk/matplotlib, and pyint-gtk.py is as good as the standard shell. Plus we need testers, because the guts of this shell will become the guts of ipython-gtk. If you start it with > python pyint-gtk.py -mplot it will not only start the gtk mainloop but will import all of matplotlib, so if the first command you type is >>> plot([1,2,3[]) a plot will pop up. And you can import and use the view_array code I posted before as well. I'll include the src for pyint-gtk.py here, as it is short Hope this helps, JDH #!/usr/bin/env python """Multithreaded interactive interpreter with GTK and Matplotlib support. Usage: pyint-gtk.py -> starts shell with gtk thread running separately pyint-gtk.py -mplot [filename] -> initializes matplotlib, optionally running the named file. The shell starts after the file is executed. Threading code inspired by: http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/65109, by Brian McErlean and John Finlay. Matplotlib support taken from interactive.py in the matplotlib distribution. Also borrows liberally from code.py in the Python standard library.""" __author__ = "Fernando Perez <Fer...@co...>" import sys import code import threading import pygtk pygtk.require("2.0") import gtk try: import readline except ImportError: has_readline = False else: has_readline = True class MTConsole(code.InteractiveConsole): """Simple multi-threaded shell""" def __init__(self,on_kill=None,*args,**kw): code.InteractiveConsole.__init__(self,*args,**kw) self.code_to_run = None self.ready = threading.Condition() self._kill = False if on_kill is None: on_kill = [] # Check that all things to kill are callable: for _ in on_kill: if not callable(_): raise TypeError,'on_kill must be a list of callables' self.on_kill = on_kill # Set up tab-completer if has_readline: import rlcompleter try: # this form only works with python 2.3 self.completer = rlcompleter.Completer(self.locals) except: # simpler for py2.2 self.completer = rlcompleter.Completer() readline.set_completer(self.completer.complete) # Use tab for completions readline.parse_and_bind('tab: complete') # This forces readline to automatically print the above list when tab # completion is set to 'complete'. readline.parse_and_bind('set show-all-if-ambiguous on') # Bindings for incremental searches in the history. These searches # use the string typed so far on the command line and search # anything in the previous input history containing them. readline.parse_and_bind('"\C-r": reverse-search-history') readline.parse_and_bind('"\C-s": forward-search-history') def runsource(self, source, filename="<input>", symbol="single"): """Compile and run some source in the interpreter. Arguments are as for compile_command(). One several things can happen: 1) The input is incorrect; compile_command() raised an exception (SyntaxError or OverflowError). A syntax traceback will be printed by calling the showsyntaxerror() method. 2) The input is incomplete, and more input is required; compile_command() returned None. Nothing happens. 3) The input is complete; compile_command() returned a code object. The code is executed by calling self.runcode() (which also handles run-time exceptions, except for SystemExit). The return value is True in case 2, False in the other cases (unless an exception is raised). The return value can be used to decide whether to use sys.ps1 or sys.ps2 to prompt the next line. """ try: code = self.compile(source, filename, symbol) except (OverflowError, SyntaxError, ValueError): # Case 1 self.showsyntaxerror(filename) return False if code is None: # Case 2 return True # Case 3 # Store code in self, so the execution thread can handle it self.ready.acquire() self.code_to_run = code self.ready.wait() # Wait until processed in timeout interval self.ready.release() return False def runcode(self): """Execute a code object. When an exception occurs, self.showtraceback() is called to display a traceback.""" self.ready.acquire() if self._kill: print 'Closing threads...', sys.stdout.flush() for tokill in self.on_kill: tokill() print 'Done.' if self.code_to_run is not None: self.ready.notify() code.InteractiveConsole.runcode(self,self.code_to_run) self.code_to_run = None self.ready.release() return True def kill (self): """Kill the thread, returning when it has been shut down.""" self.ready.acquire() self._kill = True self.ready.release() class GTKInterpreter(threading.Thread): """Run a gtk mainloop() in a separate thread. Python commands can be passed to the thread where they will be executed. This is implemented by periodically checking for passed code using a GTK timeout callback. """ TIMEOUT = 100 # Milisecond interval between timeouts. def __init__(self,banner=None): threading.Thread.__init__(self) self.banner = banner self.shell = MTConsole(on_kill=[gtk.mainquit]) def run(self): self.pre_interact() self.shell.interact(self.banner) self.shell.kill() def mainloop(self): self.start() gtk.timeout_add(self.TIMEOUT, self.shell.runcode) try: if gtk.gtk_version[0] >= 2: gtk.threads_init() except AttributeError: pass gtk.mainloop() self.join() def pre_interact(self): """This method should be overridden by subclasses. It gets called right before interact(), but after the thread starts. Typically used to push initialization code into the interpreter""" pass class MatplotLibInterpreter(GTKInterpreter): """Threaded interpreter with matplotlib support.""" def __init__(self,banner=None): banner = """\nWelcome to matplotlib, a matlab-like python environment. help(matlab) -> help on matlab compatible commands from matplotlib. help(plotting) -> help on plotting commands. """ GTKInterpreter.__init__(self,banner) def pre_interact(self): """Initialize matplotlib before user interaction begins""" push = self.shell.push # Code to execute in user's namespace lines = ["import matplotlib", "matplotlib.use('GTKAgg')", "matplotlib.interactive(1)", "import matplotlib.matlab as matlab", "from matplotlib.matlab import *"] map(push,lines) # Execute file if given. if len(sys.argv)>1: import matplotlib matplotlib.interactive(0) # turn off interaction fname = sys.argv[1] try: inFile = file(fname, 'r') except IOError: print '*** ERROR *** Could not read file <%s>' % fname else: print '*** Executing file <%s>:' % fname for line in inFile: if line.lstrip().find('show()')==0: continue print '>>', line, push(line) inFile.close() matplotlib.interactive(1) # turn on interaction if __name__ == '__main__': # Quick sys.argv hack to extract the option and leave filenames in sys.argv. # For real option handling, use optparse or getopt. if len(sys.argv) > 1 and sys.argv[1]=='-mplot': sys.argv = [sys.argv[0]]+sys.argv[2:] MatplotLibInterpreter().mainloop() else: GTKInterpreter().mainloop() |
From: John H. <jdh...@ac...> - 2004-08-20 12:59:50
|
>>>>> "Thomas" == Thomas Barket <tho...@ya...> writes: Thomas> John, That makes sense. Tks vm. Thomas> I am still confused on what approach needs to be taken to Thomas> get the data grids to be *interactive* from the python Thomas> command prompt. It seems to me that such interactivity Thomas> requires threading (ie, creating any new data grid gui Thomas> window in its own thread). Is that correct, or is there Thomas> some other way to do it? OK, I appreciate that it's confusing. It's not an easy subject. I suggest you give http://matplotlib.sourceforge.net/interactive.html and http://matplotlib.sourceforge.net/faq.html#SHOW another reading because your comments below indicate you haven't fully digested that material. I take full responsibility for this, however, because I wrote the docs! I'll elaborate somewhat. First a reminder which I think you already understand: matplotlib has an interactive mode and a non-interactive mode. You want to use the interactive mode, set 'interactive : True' in your rc file. In interactive mode do not call show, ever. OK. Your real problem is how to start the mainloop vis-a-vis threading. The answer is (for gtk/gtkagg), use a custom python shell for pygtk. The idea here is that the custom shell starts the mainloop for you. When you import matplotlib with interactive on from one of these shells, the mainloop is already started in a separate thread, and you can issue plot commands and get immediate responses without losing control of the prompt. Of course, you can launch other gtk windows and widgets too. There are a variety of python shells out there for pygtk, but I strongly recommend you start with Fernando Perez's pyint-gtk.py. If you notice in my last post to you, I wrote > Here is an example using Fernando's ipython-gtk ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ > hunter:~/python/examples/pygtk> python ~/tmp/ip/ipython-gtk.py > Python 2.3.2 (#1, Oct 13 2003, 11:33:15) > [GCC 3.3.1] on linux2 > Type "copyright", "credits" or "license" for more information. > (MatplotlibShell) > 1 >>> from matplotlib.numerix import rand > 2 >>> from array_to_grid import view_array > 3 >>> view_array( rand(20,10)) > Out[3]: <ArrayView object (GtkWindow) at 0x4136db94> I would have emphasized that but I wrongly assumed you knew you needed a threaded GTK shell. I guess I've been doing this too long :-) pyint-gtk.py is just a temporary proof-of-concept to lay the groundwork for ipython-gtk, which will be a full featured ipython shell with gtk/matplotlib support. If you haven't checked out ipython, you should, as it's *very nice* for interactive work. Nonetheless, the current release of ipython doesn't support gtk/matplotlib, and pyint-gtk.py is as good as the standard shell. Plus we need testers, because the guts of this shell will become the guts of ipython-gtk. If you start it with > python pyint-gtk.py -mplot it will not only start the gtk mainloop but will import all of matplotlib, so if the first command you type is >>> plot([1,2,3[]) a plot will pop up. And you can import and use the view_array code I posted before as well. I'll include the src for pyint-gtk.py here, as it is short Hope this helps, JDH #!/usr/bin/env python """Multithreaded interactive interpreter with GTK and Matplotlib support. Usage: pyint-gtk.py -> starts shell with gtk thread running separately pyint-gtk.py -mplot [filename] -> initializes matplotlib, optionally running the named file. The shell starts after the file is executed. Threading code inspired by: http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/65109, by Brian McErlean and John Finlay. Matplotlib support taken from interactive.py in the matplotlib distribution. Also borrows liberally from code.py in the Python standard library.""" __author__ = "Fernando Perez <Fer...@co...>" import sys import code import threading import pygtk pygtk.require("2.0") import gtk try: import readline except ImportError: has_readline = False else: has_readline = True class MTConsole(code.InteractiveConsole): """Simple multi-threaded shell""" def __init__(self,on_kill=None,*args,**kw): code.InteractiveConsole.__init__(self,*args,**kw) self.code_to_run = None self.ready = threading.Condition() self._kill = False if on_kill is None: on_kill = [] # Check that all things to kill are callable: for _ in on_kill: if not callable(_): raise TypeError,'on_kill must be a list of callables' self.on_kill = on_kill # Set up tab-completer if has_readline: import rlcompleter try: # this form only works with python 2.3 self.completer = rlcompleter.Completer(self.locals) except: # simpler for py2.2 self.completer = rlcompleter.Completer() readline.set_completer(self.completer.complete) # Use tab for completions readline.parse_and_bind('tab: complete') # This forces readline to automatically print the above list when tab # completion is set to 'complete'. readline.parse_and_bind('set show-all-if-ambiguous on') # Bindings for incremental searches in the history. These searches # use the string typed so far on the command line and search # anything in the previous input history containing them. readline.parse_and_bind('"\C-r": reverse-search-history') readline.parse_and_bind('"\C-s": forward-search-history') def runsource(self, source, filename="<input>", symbol="single"): """Compile and run some source in the interpreter. Arguments are as for compile_command(). One several things can happen: 1) The input is incorrect; compile_command() raised an exception (SyntaxError or OverflowError). A syntax traceback will be printed by calling the showsyntaxerror() method. 2) The input is incomplete, and more input is required; compile_command() returned None. Nothing happens. 3) The input is complete; compile_command() returned a code object. The code is executed by calling self.runcode() (which also handles run-time exceptions, except for SystemExit). The return value is True in case 2, False in the other cases (unless an exception is raised). The return value can be used to decide whether to use sys.ps1 or sys.ps2 to prompt the next line. """ try: code = self.compile(source, filename, symbol) except (OverflowError, SyntaxError, ValueError): # Case 1 self.showsyntaxerror(filename) return False if code is None: # Case 2 return True # Case 3 # Store code in self, so the execution thread can handle it self.ready.acquire() self.code_to_run = code self.ready.wait() # Wait until processed in timeout interval self.ready.release() return False def runcode(self): """Execute a code object. When an exception occurs, self.showtraceback() is called to display a traceback.""" self.ready.acquire() if self._kill: print 'Closing threads...', sys.stdout.flush() for tokill in self.on_kill: tokill() print 'Done.' if self.code_to_run is not None: self.ready.notify() code.InteractiveConsole.runcode(self,self.code_to_run) self.code_to_run = None self.ready.release() return True def kill (self): """Kill the thread, returning when it has been shut down.""" self.ready.acquire() self._kill = True self.ready.release() class GTKInterpreter(threading.Thread): """Run a gtk mainloop() in a separate thread. Python commands can be passed to the thread where they will be executed. This is implemented by periodically checking for passed code using a GTK timeout callback. """ TIMEOUT = 100 # Milisecond interval between timeouts. def __init__(self,banner=None): threading.Thread.__init__(self) self.banner = banner self.shell = MTConsole(on_kill=[gtk.mainquit]) def run(self): self.pre_interact() self.shell.interact(self.banner) self.shell.kill() def mainloop(self): self.start() gtk.timeout_add(self.TIMEOUT, self.shell.runcode) try: if gtk.gtk_version[0] >= 2: gtk.threads_init() except AttributeError: pass gtk.mainloop() self.join() def pre_interact(self): """This method should be overridden by subclasses. It gets called right before interact(), but after the thread starts. Typically used to push initialization code into the interpreter""" pass class MatplotLibInterpreter(GTKInterpreter): """Threaded interpreter with matplotlib support.""" def __init__(self,banner=None): banner = """\nWelcome to matplotlib, a matlab-like python environment. help(matlab) -> help on matlab compatible commands from matplotlib. help(plotting) -> help on plotting commands. """ GTKInterpreter.__init__(self,banner) def pre_interact(self): """Initialize matplotlib before user interaction begins""" push = self.shell.push # Code to execute in user's namespace lines = ["import matplotlib", "matplotlib.use('GTKAgg')", "matplotlib.interactive(1)", "import matplotlib.matlab as matlab", "from matplotlib.matlab import *"] map(push,lines) # Execute file if given. if len(sys.argv)>1: import matplotlib matplotlib.interactive(0) # turn off interaction fname = sys.argv[1] try: inFile = file(fname, 'r') except IOError: print '*** ERROR *** Could not read file <%s>' % fname else: print '*** Executing file <%s>:' % fname for line in inFile: if line.lstrip().find('show()')==0: continue print '>>', line, push(line) inFile.close() matplotlib.interactive(1) # turn on interaction if __name__ == '__main__': # Quick sys.argv hack to extract the option and leave filenames in sys.argv. # For real option handling, use optparse or getopt. if len(sys.argv) > 1 and sys.argv[1]=='-mplot': sys.argv = [sys.argv[0]]+sys.argv[2:] MatplotLibInterpreter().mainloop() else: GTKInterpreter().mainloop() |
From: Thomas B. <tho...@ya...> - 2004-08-20 09:40:50
|
John, That makes sense. Tks vm. I am still confused on what approach needs to be taken to get the data grids to be *interactive* from the python command prompt. It seems to me that such interactivity requires threading (ie, creating any new data grid gui window in its own thread). Is that correct, or is there some other way to do it? In fact, with the example below, in order to get it to work, I needed to add a couple of lines to call the mainloop: >>> from matplotlib.numerix import rand >>> from array_to_grid import view_array >>> view_array( rand(20,10)) <ArrayView object (GtkWindow) at 0x1136eb8> >>> import gtk >>> gtk.main() After I call gtk.main(), I then lose all ability to interact with the python command prompt :-(. This gui mainloop concept is something I am a little confused on. I understand why one has to call such a mainloop for a gui: so the gui window can be alerted by the os that some kind of event has been fired, like a mouse click, so it can respond in the appropriate manner. But I don't want to create an application that takes over the mainloop. I am not writing a window-driven application. I want to continue to interact with the python command prompt (and hopefully be able to interact with any launched gui windows from it). So I suppose I have to figure out how to get such mainloops to run in separate threads (or is "process" the correct word here???) in order to have access to the python command prompt (and possibly even create more data grids!). Is that correct? Im also a little confused bc I have read statements like "all graphics commands should be handled in a single thread." The "Thinking in Tkinter" web site (http://www.ferg.org/thinking_in_tkinter/index.html) says: Note that you should not run these programs under IDLE. IDLE is itself a Tkinter application, with its own "mainloop" that will conflict with the mainloop in these programs. If you really want to view and run these programs using IDLE, then -- for each program -- you should comment out the "mainloop" statement in the program before running it. That kind of warning sounds a little depressing. Is it not possible to (somewhat easily) launch various gui windows, like a data grid, in their own threads (processes?) and still have control of the python command prompt and be able to interact with such gui windows? Any pointers anyone can give me to learn more about launching interactive gui widgets from the python command prompt and maintaining interactivity with the python command prompt would be greatly appreciated. Many thanks once again. Sincerely, Tom -----Original Message----- From: John Hunter [mailto:jdh...@ac...] Sent: Wednesday, August 18, 2004 1:31 PM To: Thomas Barket Cc: mat...@li... Subject: Re: [Matplotlib-users] Requesting advice on multi-threaded matplotlib session + grids displaying data >>>>> "Thomas" == Thomas Barket <tho...@ya...> writes: Thomas> Btw, what does "TkAgg sets interactive mode to True when Thomas> you issue the show command" mean exactly? It means that if you are using tkagg and issue show, it launches the interactive interpreter (python shell) Thomas> Wx has such a grid widget which can be used for Thomas> displaying/editing data, which is what I was hoping to Thomas> use. However, I am not sure if one should mix different Thomas> gui's. Iow, if I use tkagg or gtk as my interactive Thomas> matplotlib gui, can I also display and interact with Thomas> wxpython grid widgets in the same script smoothly? Am I Thomas> asking for trouble having the same script display Thomas> interactive matplotlib charts using one gui type and then Thomas> display these grid widgets using another gui type? Or Thomas> should I just stick with one gui type throughout the Thomas> entire script so that the interactive matplotlib charts Thomas> use say gtk and the same script also uses gtk for its grid Thomas> widgets? OK, now I see better where you are coming from. You have a deluge of data coming back from the prompt in the interactive shell and are looking for a better way to deal with it. This is really beyond the scope of matplotlib since it is a plotting library and your question goes more to interacting with data. See ipython for solutions to facilitate better interaction with data. I can give you a couple of pointers though. If you save the return value of a plot as a named variable, the output will be suppressed. Then you can use array slicing to only show a portion of it. 1 >>> n, bins, patches = hist(randn(10000), 100) # no output printed 2 >>> n[:5] # look at your data in slices using indexing Out[2]: [1,1,2,5,3,] ipython has additional features to automatically suppress really large arrays 1 >>> rand(100,100) Out[1]: array (100,100) , type = d, has 10000 elements On to your question about mixing GUIs. Don't do it. You will explode. If you want to display your data in a wx grid, you could use the wxagg matplotlib backend and write some functions to display the data in a wx grid. Eg, if you are working in a shell that supports wx interactive work (pycrust), you could write a function to display any array or vector in a wx grid and then call that function interactively. Fernando is working on an interactive shell (mentioned previously) that supports matplotlib/gtk. Once he gets the kinks worked out, he plans to support matplotlib/wx as well. If you want to work in gtk (eg matplotlib/gtkagg) the equivalent to a wx grid is a treeview/liststore. You can write functions to pipe arrays into grids and then display them by calling that function interactively. Here is an example using Fernando's ipython-gtk hunter:~/python/examples/pygtk> python ~/tmp/ip/ipython-gtk.py Extra content at the end of the document Python 2.3.2 (#1, Oct 13 2003, 11:33:15) [GCC 3.3.1] on linux2 Type "copyright", "credits" or "license" for more information. (MatplotlibShell) 1 >>> from matplotlib.numerix import rand 2 >>> from array_to_grid import view_array 3 >>> view_array( rand(20,10)) Out[3]: <ArrayView object (GtkWindow) at 0x4136db94> And this is the screenshot - http://nitace.bsd.uchicago.edu:8080/files/share/Screenshot-Ipython-gtk.py.pn g While it would be possible for us to write functions in matplotlib that would implement view_array (or something like it) for each of the GUI backends, allowing you to call this function for tk, wx or gtk, it's really beyond the scope of matplotlib (we're busy enough trying to plot!). It's more in the domain of a matlab / mathematica like integrated scientific computing environment, another topic near and dear to Fernando's heart. Here is the code array_to_grid.py - you can do a lot more with treeviews and liststores, eg make a proper editable spreadsheet interface with scroll bars in both x and y directions, but this will get you started 'Display an array as a treeview' import pygtk pygtk.require('2.0') import gobject import gtk from gtk import gdk def view_array(X): 'instantiate an ArrayView instance and show it' grid = ArrayView(X) grid.show_all() return grid class ArrayView(gtk.Window): def __init__(self, X): gtk.Window.__init__(self) self.numRows, self.numCols = X.shape self.data = X self.set_title('Array display') self.set_border_width(8) vbox = gtk.VBox(False, 8) self.add(vbox) sw = gtk.ScrolledWindow() sw.set_shadow_type(gtk.SHADOW_ETCHED_IN) sw.set_policy(gtk.POLICY_NEVER, gtk.POLICY_AUTOMATIC) vbox.pack_start(sw, True, True) model = self.create_model() self.treeview = gtk.TreeView(model) self.treeview.set_rules_hint(True) sw.add(self.treeview) self.add_columns() self.set_default_size(640, 480) self.add_events(gdk.BUTTON_PRESS_MASK | gdk.KEY_PRESS_MASK| gdk.KEY_RELEASE_MASK) def add_columns(self): model = self.treeview.get_model() renderer = gtk.CellRendererText() for i in range(self.numCols): column = gtk.TreeViewColumn('%d'%i, gtk.CellRendererText(), text=i) self.treeview.append_column(column) def create_model(self): types = [gobject.TYPE_DOUBLE]*self.numCols store = gtk.ListStore(*types) for row in self.data: iter = store.append() pairs = [] for i, num in enumerate(row): pairs.extend((i, num)) store.set(iter, *pairs) return store if __name__=='__main__': from matplotlib.numerix import rand view_array(rand(10,10)) gtk.main() |
From: Fernando P. <Fer...@co...> - 2004-08-19 17:55:15
|
John Hunter wrote: > Yes, and along those lines for the GTK shell, we should use > rcParams['backend'] to detect GTK versus GTKAgg and use whichever is > in the rc file in the call to matplotlib.use. Ok. I may take a first stab at this in a day or two, but no promises. > good. As for problems with wx, I can't really say until we try. I can :( I just tried, and the new code (which doesn't lock up gv), will never start if the backend chosen is WX. But it may be a matter of thread conflicts or something, since pygtk calls are still being made. Let's get Tk*/Gtk* working first, with a well-localized set of thread calls only when needed. With a clean enough base, putting the WX code in the right place should be reasonably easy. Perhaps Andrew (who wanted to hack matplotlib a bit) might help along in LA. Cheers, f |
From: John H. <jdh...@ac...> - 2004-08-19 17:50:07
|
>>>>> "Fernando" == Fernando Perez <Fer...@co...> writes: >> push = self.shell.push # Code to execute in user's namespace >> lines = ["import matplotlib", ---> "matplotlib.use('GTKAgg')", >> "matplotlib.interactive(1)", "import matplotlib.matlab as >> matlab", "from matplotlib.matlab import *"] You might make the >> additional caveat in the docs about honoring rc settings that >> the default backend is overridden. Fernando> Well, actually I think we should honor the user's rc Fernando> choice, don't you? In fact, the ipython version does Fernando> this, so the equivalent here would be just to comment Fernando> out the line you highlighted. Yes, and along those lines for the GTK shell, we should use rcParams['backend'] to detect GTK versus GTKAgg and use whichever is in the rc file in the call to matplotlib.use. Fernando> Cool. I'll integrate Antoon's and your fixes into the Fernando> 'real' (read ipython-based) code, and we'll play with Fernando> that a bit. Do you foresee any problems with the WX Fernando> backend? Right now I have global pygtk calls, but I Fernando> suppose those should be done only by the matplotlib Fernando> shell class IF Gtk is the chosen backend. Relocating the pygtk calls into the backend dependent section sounds good. As for problems with wx, I can't really say until we try. Thanks! JDH |
From: Fernando P. <Fer...@co...> - 2004-08-19 17:06:06
|
John Hunter wrote: >>>>>>"Fernando" == Fernando Perez <Fer...@co...> writes: > Fernando> ps. John, I think we almost have this nailed :) > > Don't tempt the fates -- I got an X11 freeze. But I think I fixed it. Hey, I said _almost_ :) > def pre_interact(self): > """Initialize matplotlib before user interaction begins""" > > ---> import matplotlib.matlab > > I don't think you want this, especially not here. Remember that all > the matplotlib.use and matplotlib.interactive calls should be made > *before* importing matplotlib.matlab (which is when the actual backend > is imported) Noted. > push = self.shell.push > # Code to execute in user's namespace > lines = ["import matplotlib", > ---> "matplotlib.use('GTKAgg')", > "matplotlib.interactive(1)", > "import matplotlib.matlab as matlab", > "from matplotlib.matlab import *"] > > You might make the additional caveat in the docs about honoring rc > settings that the default backend is overridden. Well, actually I think we should honor the user's rc choice, don't you? In fact, the ipython version does this, so the equivalent here would be just to comment out the line you highlighted. > > map(push,lines) > > # turn off rendering until end of script > ---> matplotlib.matlab.interactive = 0 > > I'm pretty sure you mean matplotlib.interactive(0) -- ie, it's a > function, not a variable, and it isn't in the matlab interface module. > And don't you want to turn off interaction only if they load a file, > and then turn it back on? Ie, [...] Ok. In fact, in the ipython-based version you and I have floated, this was alreadey fixed (by you). But I'll double-check as soon as I can get that done (probably this evening). I asked the pygtk crowd for help with the simpler pyint-gtk, which did NOT have our recent work, because it made it much easier for them to test without asking them to download CVS ipython. > But with these changes, it works great! Here is my modified version Cool. I'll integrate Antoon's and your fixes into the 'real' (read ipython-based) code, and we'll play with that a bit. Do you foresee any problems with the WX backend? Right now I have global pygtk calls, but I suppose those should be done only by the matplotlib shell class IF Gtk is the chosen backend. That part of the design needs a bit of polishing, and I may have to leave it til we meet at scipy'04. I still have to put my talks together for the meeting, so my hacking time will be very limited for the next two weeks. But we _are_ close :) Best, f |
From: John H. <jdh...@ac...> - 2004-08-19 16:54:13
|
>>>>> "Fernando" == Fernando Perez <Fer...@co...> writes: Fernando> thanks to Antoon Pardon from the pygtk mailing list, I told you those guys were brainy :-) Fernando> ps. John, I think we almost have this nailed :) Don't tempt the fates -- I got an X11 freeze. But I think I fixed it. def pre_interact(self): """Initialize matplotlib before user interaction begins""" ---> import matplotlib.matlab I don't think you want this, especially not here. Remember that all the matplotlib.use and matplotlib.interactive calls should be made *before* importing matplotlib.matlab (which is when the actual backend is imported) push = self.shell.push # Code to execute in user's namespace lines = ["import matplotlib", ---> "matplotlib.use('GTKAgg')", "matplotlib.interactive(1)", "import matplotlib.matlab as matlab", "from matplotlib.matlab import *"] You might make the additional caveat in the docs about honoring rc settings that the default backend is overridden. map(push,lines) # turn off rendering until end of script ---> matplotlib.matlab.interactive = 0 I'm pretty sure you mean matplotlib.interactive(0) -- ie, it's a function, not a variable, and it isn't in the matlab interface module. And don't you want to turn off interaction only if they load a file, and then turn it back on? Ie, # Execute file if given. if len(sys.argv)>1: ---> import matplotlib ---> matplotlib.interactive(0) # turn off interaction fname = sys.argv[1] try: inFile = file(fname, 'r') except IOError: print '*** ERROR *** Could not read file <%s>' % fname else: print '*** Executing file <%s>:' % fname for line in inFile: if line.lstrip().find('show()')==0: continue print '>>', line, push(line) inFile.close() ---> matplotlib.interactive(1) # turn on interaction But with these changes, it works great! Here is my modified version #!/usr/bin/env python """Multithreaded interactive interpreter with GTK and Matplotlib support. Usage: pyint-gtk.py -> starts shell with gtk thread running separately pyint-gtk.py -mplot [filename] -> initializes matplotlib, optionally running the named file. The shell starts after the file is executed. Threading code inspired by: http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/65109, by Brian McErlean and John Finlay. Matplotlib support taken from interactive.py in the matplotlib distribution. Also borrows liberally from code.py in the Python standard library.""" __author__ = "Fernando Perez <Fer...@co...>" import sys import code import threading import pygtk pygtk.require("2.0") import gtk try: import readline except ImportError: has_readline = False else: has_readline = True class MTConsole(code.InteractiveConsole): """Simple multi-threaded shell""" def __init__(self,on_kill=None,*args,**kw): code.InteractiveConsole.__init__(self,*args,**kw) self.code_to_run = None self.ready = threading.Condition() self._kill = False if on_kill is None: on_kill = [] # Check that all things to kill are callable: for _ in on_kill: if not callable(_): raise TypeError,'on_kill must be a list of callables' self.on_kill = on_kill # Set up tab-completer if has_readline: import rlcompleter try: # this form only works with python 2.3 self.completer = rlcompleter.Completer(self.locals) except: # simpler for py2.2 self.completer = rlcompleter.Completer() readline.set_completer(self.completer.complete) # Use tab for completions readline.parse_and_bind('tab: complete') # This forces readline to automatically print the above list when tab # completion is set to 'complete'. readline.parse_and_bind('set show-all-if-ambiguous on') # Bindings for incremental searches in the history. These searches # use the string typed so far on the command line and search # anything in the previous input history containing them. readline.parse_and_bind('"\C-r": reverse-search-history') readline.parse_and_bind('"\C-s": forward-search-history') def runsource(self, source, filename="<input>", symbol="single"): """Compile and run some source in the interpreter. Arguments are as for compile_command(). One several things can happen: 1) The input is incorrect; compile_command() raised an exception (SyntaxError or OverflowError). A syntax traceback will be printed by calling the showsyntaxerror() method. 2) The input is incomplete, and more input is required; compile_command() returned None. Nothing happens. 3) The input is complete; compile_command() returned a code object. The code is executed by calling self.runcode() (which also handles run-time exceptions, except for SystemExit). The return value is True in case 2, False in the other cases (unless an exception is raised). The return value can be used to decide whether to use sys.ps1 or sys.ps2 to prompt the next line. """ try: code = self.compile(source, filename, symbol) except (OverflowError, SyntaxError, ValueError): # Case 1 self.showsyntaxerror(filename) return False if code is None: # Case 2 return True # Case 3 # Store code in self, so the execution thread can handle it self.ready.acquire() self.code_to_run = code self.ready.wait() # Wait until processed in timeout interval self.ready.release() return False def runcode(self): """Execute a code object. When an exception occurs, self.showtraceback() is called to display a traceback.""" self.ready.acquire() if self._kill: print 'Closing threads...', sys.stdout.flush() for tokill in self.on_kill: tokill() print 'Done.' if self.code_to_run is not None: self.ready.notify() code.InteractiveConsole.runcode(self,self.code_to_run) self.code_to_run = None self.ready.release() return True def kill (self): """Kill the thread, returning when it has been shut down.""" self.ready.acquire() self._kill = True self.ready.release() class GTKInterpreter(threading.Thread): """Run a gtk mainloop() in a separate thread. Python commands can be passed to the thread where they will be executed. This is implemented by periodically checking for passed code using a GTK timeout callback. """ TIMEOUT = 100 # Milisecond interval between timeouts. def __init__(self,banner=None): threading.Thread.__init__(self) self.banner = banner self.shell = MTConsole(on_kill=[gtk.mainquit]) def run(self): self.pre_interact() self.shell.interact(self.banner) self.shell.kill() def mainloop(self): self.start() gtk.timeout_add(self.TIMEOUT, self.shell.runcode) try: if gtk.gtk_version[0] >= 2: gtk.threads_init() except AttributeError: pass gtk.mainloop() self.join() def pre_interact(self): """This method should be overridden by subclasses. It gets called right before interact(), but after the thread starts. Typically used to push initialization code into the interpreter""" pass class MatplotLibInterpreter(GTKInterpreter): """Threaded interpreter with matplotlib support.""" def __init__(self,banner=None): banner = """\nWelcome to matplotlib, a matlab-like python environment. help(matlab) -> help on matlab compatible commands from matplotlib. help(plotting) -> help on plotting commands. """ GTKInterpreter.__init__(self,banner) def pre_interact(self): """Initialize matplotlib before user interaction begins""" push = self.shell.push # Code to execute in user's namespace lines = ["import matplotlib", "matplotlib.use('GTKAgg')", "matplotlib.interactive(1)", "import matplotlib.matlab as matlab", "from matplotlib.matlab import *"] map(push,lines) # Execute file if given. if len(sys.argv)>1: import matplotlib matplotlib.interactive(0) # turn off interaction fname = sys.argv[1] try: inFile = file(fname, 'r') except IOError: print '*** ERROR *** Could not read file <%s>' % fname else: print '*** Executing file <%s>:' % fname for line in inFile: if line.lstrip().find('show()')==0: continue print '>>', line, push(line) inFile.close() matplotlib.interactive(1) # turn on interaction if __name__ == '__main__': # Quick sys.argv hack to extract the option and leave filenames in sys.argv. # For real option handling, use optparse or getopt. if len(sys.argv) > 1 and sys.argv[1]=='-mplot': sys.argv = [sys.argv[0]]+sys.argv[2:] MatplotLibInterpreter().mainloop() else: GTKInterpreter().mainloop() |
From: Fernando P. <Fer...@co...> - 2004-08-19 16:13:37
|
Hi all, thanks to Antoon Pardon from the pygtk mailing list, I now have what appears to be a fully working interactive python console for gtk/matplotlib usage, which does NOT lock up when things like os.system('gv foo.eps &') are emitted. I've attached it here, and it would be great if people could take it for a spin and let me know how it works. Just make it executable and run ./pyint-gtk.py -mplot and it preloads matplotlib for you, honoring your .matplotlibrc settings (except that it forces matplotlib to interactive mode). If this resists a few days of testing, I'll port the mods Anton made to the real ipython. Best regards, f. ps. John, I think we almost have this nailed :) |
From: John H. <jdh...@ac...> - 2004-08-19 14:56:06
|
>>>>> "Jon" == Jon Wright <wr...@es...> writes: Jon> Hi all, Is there a trick hidden somewhere for autoscaling one Jon> axis only? I am frequently plotting data which has a series Jon> of narrow peaks and a large dynamic range. After zooming on Jon> the x-axis to the region of interest, I'd like to have an Jon> option to make the y axis rescale for the data in that range Just to make sure you know, with the new toolbar2 (matplotlib-0.61) you can selectively scale the yaxis interactively by pressing the pan/zoom button, and clicking and dragging your right mouse button over the y axis while holding down the 'y' key. Ditto for pan with the left button. Jon> only. Having flailed around in the source I have the feeling Jon> that this is possible, but I haven't quite fathomed out how Jon> to do it (I'm using matplotlib for an interactive plot Jon> embedded in a tk application). Essentially I want the Jon> appropriate magic spell to give me a bounding box in y for Jon> the current x axis limits. The things I tried so far always Jon> seem to give the bounding box for all the data points, Jon> including the ones which are not currently being plotted on Jon> the x range. Sorry if I've missed something obvious! No you're not missing anything. I can give you an idea of how to hack this though. The autoscaling is controlled by a tick locator, found in matplotlib.tickers. There are a number of locators which derive from the Locator base class. You can access the major tick locator of a given axis with, for example locator = ax.yaxis.get_major_locator() The locator has a method to compute the view limits vmin, vmax = locator.autoscale() It uses a _transforms.Interval instance under the hood to get the data limits dmin, dmax which gives the min and max range for your data on that axis. Of course, this is the min and max for all the y data, not just the data in the current xrange, which is your problem. In order to solve this, your need to: 1) compute the data limits in the current viewport, 2) set the limited data lim on the axis interval instance, 3) use it to get the new autoscale limits, and 4) reset the old data lim interval instance back to its original setting. Assuming you know the y data lim in the xrange of interest (more on that later) you would do (untested but should work barring an obvious screw up) interval = ax.yaxis.get_data_interval() savemin, savemax = interval.get_bounds() dmin, dmax = # compute the y data limits in this xrange as below interval.set_bounds(dmin, dmax) # the locator has a ref to the interval and so sees your changes ax.set_ylim(locator.autoscale()) # autoscale returns (vmin, vmax) # now reset the original data lim interval.set_bounds(savemin, savemax) The only remaining thing is to get the ydata in xrange. This depends on the kind of data you plotted, but let's assume it is from 'plot' and thus your data are stored in Line2D instances. With a single line (eg returned by the call) 'line, = plot(x,y)' (note the comma for tuple unpacking) you can do import matplotlib.numerix as nx xmin, xmax = ax.get_xlim() xdata = line.get_xdata() ydata = line.get_xdata() ind = nx.nonzero(mx.logical_and(nx.greater_equal(xdata, xmin) nx.less_equal(xdata, xmax))) y = nx.take(ydata, ind) dmin, dmax = min(y), max(y) # and now set the data lim in the interval instance as indicated # above Now that's the process for a single line. For multiple lines, all you need to do is keep a running total of all the data to get the min/max of all the lines. The function ax.get_lines() will return all the data lines matplotlib uses. If you have scatters, pcolors and other kinds of plots which may use collections and other data structures, then more work would be needed still. However, you may have direct access to your data, in which case you can just use that to extract the ydata in the range. BTW, there has been some discussion on the devel list recently about a plugin feature to support easy customization and extension of the toolbar. This kind of thing is a perfect candidate for that, because you could create a plugin for 'autoscale y in the current xrange' and we could place it in a contrib plugin dir that others could add to their toolbar when they want. Hope this helps, JDH |
From: Jean-Michel P. <jea...@ir...> - 2004-08-19 14:41:21
|
> Hi Jean-Michel, > > I spoke with with Paul Barrett (who wrote the font manager and has > done a lot of work with fonts/text) about your problem and neither he > nor I have any immediate insight into your problem, so I just wanted > to let you know that we'll look into it and see if we can improve > international / unicode support, but it may be a little while before > we can solve this problem. > > Thanks for letting us know. > JDH Hi JD, That's ok, I must say that seeing the silence around my mail I understood that this should be the first time this kind of problem occurs! I know that internationalization is not a simple issue so I would not be surprised if it is not quickly solved. Let me know if you need volunteers for testing. JM. Philippe |
From: John H. <jdh...@ac...> - 2004-08-19 14:23:46
|
>>>>> "Jean-Michel" == Jean-Michel Philippe <jea...@ir...> writes: Jean-Michel> Hi, I'm new to matplotlib which is really good job Jean-Michel> ;-) and I'm currently fighting against character Jean-Michel> encodings :-(. Being working under win2k/western Jean-Michel> Europe, I finally found on the web that using a cp850 Jean-Michel> source encoding definition was working with 'print' Jean-Michel> only if you also encode your strings from cp1252! Jean-Michel> (for us/en users: windows uses cp1252 but the console Jean-Michel> uses cp850, this message was written using Jean-Michel> iso-8859-1). Example: Hi Jean-Michel, I spoke with with Paul Barrett (who wrote the font manager and has done a lot of work with fonts/text) about your problem and neither he nor I have any immediate insight into your problem, so I just wanted to let you know that we'll look into it and see if we can improve international / unicode support, but it may be a little while before we can solve this problem. Thanks for letting us know. JDH |
From: John H. <jdh...@ac...> - 2004-08-19 12:22:04
|
>>>>> "Sigve" == Sigve Tjora <pu...@tj...> writes: Sigve> Hi everyone, Is there any planned support for a Qt-backend? Sigve> We are using Qt in our project, and I would like to use Sigve> Matplot lib for plotting. Sigve> If there is not any support for Qt how hard would it be to Sigve> make it myself? Would it be best to base it on the Agg Sigve> backend, or should I make a native Qt backend? What is the Sigve> least work? Is it possible to write the whole backend in Sigve> Python or should I use C++ in addition? Currently there is no QT backend, or one in the works, but it would be nice. It is definitely much easier to base it on the agg backend and is in fact *strongly encouraged* as that minimizes the amount of maintenance required. Using C/C++ is an optional step. TkAgg and GTKAgg use it to get the optimal transfer speed from the agg image to the GUI canvas. WXAgg and FLTKAgg do not use it, and Gregory reports great performance for FLTKAgg. WXAgg uses string methods to transfer the image and FLTKAgg uses a python buffer object. I encourage you to try and use a python buffer object (or string method) as opposed to extension code in the beginning since it's easier to write and maintain, it will introduce no extra compile time dependencies, and in the event that you find it too slow and want to write an extension to speed things up, you'll have the pure python method to fall back on for users who can't get the extension compiled. matplotlib.backends.backend_template contains the basic documentation for backend writers. But this code does a lot more than you need, since agg will be doing the drawing; ie you don't need to implement a renderer or graphics context. I recommend you give it a read through, and then follow the lead of backend_fltkagg. I also advise you not to implement the classic navigation toolbar (at least not until later) because the new toolbar design is not only better (in my opinion), it's currently the default and most importantly, is much easier to implement since all the work is done for you in backend bases. You basically need to load up some images into a toolbar and get the signal connections right. In the event you need a different pixel format to transfer the agg image to the qt canvas, that will be no problem. I will be glad to add it for you or you can add it yourself to backend_agg. The only thing I ask of submitters is that if you want your backend to be included with the matplotlib distribution, please be responsible for testing it across the major platforms the GUI should run on (eg linux, win32, and OSX), provide some install instructions, version dependencies, etc, for the documentation, and monitor the mailing lists to handle questions about your backend. In a nutshell, I need you to maintain it. If you don't have the time to maintain it but want to write one anyway for your own work, I would be happy to provide a link to it with a disclaimer that users are on their own. Good luck if you decide to do it, and let me know if I can help. JDH |
From: Jon W. <wr...@es...> - 2004-08-19 12:06:39
|
Hi all, Is there a trick hidden somewhere for autoscaling one axis only? I am frequently plotting data which has a series of narrow peaks and a large dynamic range. After zooming on the x-axis to the region of interest, I'd like to have an option to make the y axis rescale for the data in that range only. Having flailed around in the source I have the feeling that this is possible, but I haven't quite fathomed out how to do it (I'm using matplotlib for an interactive plot embedded in a tk application). Essentially I want the appropriate magic spell to give me a bounding box in y for the current x axis limits. The things I tried so far always seem to give the bounding box for all the data points, including the ones which are not currently being plotted on the x range. Sorry if I've missed something obvious! Thanks in advance, Jon |
From: Gregory L. <gre...@ff...> - 2004-08-19 09:47:33
|
On Wed, 2004-08-18 at 21:45, Dominique Orban wrote: > Great, this is doing the job nicely, thanks ! I am not very clear as to > what the 'subs' argument really does. In your example: > > > #full control > > gca().set_xscale('log',base=100,subs=[10,20,50]) > > #Major tick every 16**i, minor tick every subs*16**i > > (16 should be 100 right?). oooouuuups, yes indeed, sorry! > There's a major tick at 100, 100^2, 100^3, > etc. And you're saying there are minor tick marks at 10*100*i ?!? hum, not really, minor tick every array([10,20,50])*100**i (I use array else python (and maybe some reader too familiar with python lists) may think I mean [10,20,50] concatenated 100**i with itself...that could be a very long list indeed ;-) )... So minor ticks at ...0.001,0.002,0.005,0.1,0.2,0.5,10,20,50,1000,2000,5000,... > What if you'd want tick labels [0, 1, 2, 3, 4, ...] instead of (in base > 2, say) [1, 2, 4, 8, 16, ...] ? > Is that easily done? I tried to obtain > it based on the example custom_ticker1.py (in the examples > subdirectory), but haven't been successful so far. You mean tick labels like a linear plot, but with log ticking? (and beware of 0, I doubt you will be able to see the 0 label in a log plot except if you do a *LOT* of paning ;-) ;-P ) If yes, this is not yet possible, because only "major" ticks (the one corresponding to base**i) are labeled, and what you want is labeling of all ticks...this would be feasible when I cleanup minor/major ticking for logscale, in the meantime I added a flag to logformatter to tell "label all ticks" instead of "label only major ticks". Then, to do what you want (or what I believe you want ;-) ), simply do gca().set_xscale('log',base=1000,label_minor=True). the base should be large enough so that your whole xrange is in it, and by default minor tick will be generated every unit. Be aware though that due to log spacing, last labels could be very close to each other and this ain't pretty ;-) That's why I allowed full control on minor ticks with subs, often you do want to carefully choose which ticks you want, because you can end up with a black mes of ticks and labels on the right of your graph if you don't... > Thanks A LOT for the update of axes.py and ticker.py, you're welcome, Greg. |
From: Gary R. <ga...@em...> - 2004-08-19 09:42:47
|
Hi John, Thanks very much for attending to the errorbar bar-ends. FYI, I ran the p= atched code over my own errorbar plots and the refactoring seems to work = correctly in all cases. kudos, Gary > As Gary noted, recently we changed the way error bars were drawn which > apparently had some unintended consequences. The root of the problem > is related to one that came up earlier on the list about differences > in the way regular lines and marker lines are handled. <snip> > Replace matplotlib.axes.Axes.errorbar with the code below. Errorbar > users, I would be much obliged if you test this. I tried all of > Gary's errorbar_demo examples and they appeared to work fine.... --=20 ___________________________________________________________ Sign-up for Ads Free at Mail.com http://promo.mail.com/adsfreejump.htm |
From: Gregory L. <gre...@ff...> - 2004-08-19 08:34:19
|
On Wed, 2004-08-18 at 20:45, Paul Barrett wrote: > Nor Pirzkal wrote: > > > > I really like the way matplotlib has been turning out. As a Mac > > user, I was wondering how portable to Aquaterm the entire thing might > > be. Any idea if a aqua front-end is in the work. While tcl/tk WX etc.. > > works well under OSX, it is a lot of stuff to have to compile and > > install for a plotting package. > > No. There is currently no Aqua front-end being developed that I am aware of. > > Have you any interest in developing one for Aqua? I'd suggest an AquaAgg/MacAgg > backend, i.e. use Agg to do the rendering and Aqua to do the windowing, such as > is done with GtkAgg, WXAgg, and TkAgg. Once the GUI wrapper is done, most of > matplotlib comes along for free. Hi, I confirm this, I wrote an fltkAgg backend without much experience of matplotlib or gui programming to start with, by modification of an existing *Agg (TkAgg, which is the best to start with as GtkAgg and WXAgg have non-Agg version, and inherit most of their windowing methods from the non-Agg version...so a copy and modify approach is not as easy)...This took me a few days, some used for extending fltk and agg for speed optimization...So I guess, except if Aqua is really different from other toolkit, it should be a 1-2 day work for any Aqua/python guru, at most :-) So, any volunteer? ;-) Greg. |
From: Sigve T. <pu...@tj...> - 2004-08-19 07:25:33
|
Hi everyone, Is there any planned support for a Qt-backend? We are using Qt in our project, and I would like to use Matplot lib for plotting. If there is not any support for Qt how hard would it be to make it myself? Would it be best to base it on the Agg backend, or should I make a native Qt backend? What is the least work? Is it possible to write the whole backend in Python or should I use C++ in addition? Thanks, Sigve Tjora |
From: Stephen W. <ste...@cs...> - 2004-08-19 00:24:45
|
On Wed, 2004-08-18 at 15:02, Mark Howson wrote: > Hi, > > Is there any easy way of adding missing points to a (line) plot? Matlab > can do this using NaN, but as far as I can tell matplotlib doesn't > support this. This would be very nice. Gnuplot has a similar characteristic: to create the plots at http://www.csun.edu/sfo, I use a trick like this: f(x) = (x==-999999 ? 1/0 : x) plot "file" using $1:(f($2)) so that an equally spaced time series appears with gaps where we have missing data. Hmmm...is this something which should be supported via masked arrays? I tried plotting a masked array with matplotlib and numarray's MA package, and found matplotlib checks for the existence of a mask but throws an exception if you try to plot it. |
From: Mark H. <ao...@ds...> - 2004-08-18 22:02:55
|
Hi, Is there any easy way of adding missing points to a (line) plot? Matlab can do this using NaN, but as far as I can tell matplotlib doesn't support this. Something like the code below would be nice, but I don't know if this is Numeric compatible/cross platform enough/etc? from numarray.ieeespecial import * plot([10, 20, nan, 30]) I guess I can do split(source array) --> a, b and then plot(a, linestyle, b, linestyle) but having missings directly in the array would be preferable if possible. |
From: Alan G I. <ai...@am...> - 2004-08-18 21:17:35
|
On Wed, 18 Aug 2004, John Hunter apparently wrote: > Would you mind testing it for me? I tried it on a linux and winxp > platform and it worked. But I never had problems before on those two > platforms so it would be helpful to try yours as well. Seems to work fine. I also changed font_manager.py the same way: Change afmpath = os.environ.get('USERPROFILE', get_data_path()) to afmpath = get_home() if afmpath is None: afmpath = get_data_path() Sidenote: recall that because of this problem, during installation I ended up with a directory named literally Python23\%USERPROFILE literally. Until I removed this, get_home did not work quite right (because the first existence test was unexpectedly true!) So you'll want to make sure this installation problem is also gone. Cheers, Alan Isaac |
From: John H. <jdh...@ac...> - 2004-08-18 19:51:52
|
>>>>> "Paul" == Paul Barrett <ba...@st...> writes: Paul> I'm not sure what is going on here, but I can tell you that Paul> the Verdana font is somehow being corrupted, specifically Paul> the sfnts data. This font works fine for me with the Paul> simple_plot example. FYI, I get the same problem on Windows XP with simple_plot.ps. It's a simple win32 gotcha: you have to open binary files on win32 as 'rb'. linux doesn't make a distinction but windows does. win32 ps users, you need to edit site-packages/matplotlib/backends/backend_ps.py line 356 and use font = file(fontfile, 'rb') The corrupted binary data hint triggered the idea - thanks Paul for the hint and Alan for the bug report! JDH |
From: Dominique O. <Dom...@po...> - 2004-08-18 19:45:45
|
Great, this is doing the job nicely, thanks ! I am not very clear as to=20 what the 'subs' argument really does. In your example: > #full control > gca().set_xscale('log',base=3D100,subs=3D[10,20,50]) > #Major tick every 16**i, minor tick every subs*16**i (16 should be 100 right?). There's a major tick at 100, 100^2, 100^3,=20 etc. And you're saying there are minor tick marks at 10*100*i ?!? What if you'd want tick labels [0, 1, 2, 3, 4, ...] instead of (in base=20 2, say) [1, 2, 4, 8, 16, ...] ? Is that easily done? I tried to obtain=20 it based on the example custom_ticker1.py (in the examples=20 subdirectory), but haven't been successful so far. Thanks A LOT for the update of axes.py and ticker.py, Dominique Gregory Lielens wrote: > Hi, I though about this too and your message has convinced me it was > worth spending a few minutes adding this ;-) > I just patched loglocator and logformater to be able to use arbitrary > base, and also to use arbitrary "minor" ticks. Well, I put minor betwee= n > quotes because Logticker do not really use minor ticks, only discard > label for ticks that are not integer exponents of base... > Usage is like this: > Semilogx(x,y) >=20 > #compatible with previous usage > gca().set_xscale('log')=20 > # major tick every 10**i, minor tick every range(2,10)*10**I >=20 > #change base > gca().set_xscale('log',base=3D16) > #Major tick every 16**i, minor tick every range(2,16)*16**i=20 >=20 > #full control > gca().set_xscale('log',base=3D100,subs=3D[10,20,50]) > #Major tick every 16**i, minor tick every subs*16**i=20 >=20 >=20 > This gives me all the flexibility I need, and I feel it is a step in th= e > right direction, but: > -maybe a rework of log ticker is needed so that it use minor/major tic= k > mechanism? Current mechanism is not as clean as it could, imho > -maybe autoscale for loglocator should adjust the base/range to avoid > excessive ticking (A discussion I had with john, with a zoom out it is > possible to have very dense ticking)...Not so easy to do though, as sub= s > has to be adjusted too if one does not want too many minor ticks, as > this adjustment is not so easy to do if one want "usefull" minor ticks > in logscale... > I thing these 2 points are linked, I would not go to 2 if 1 is not done= , > but if one is done (using some kind of linear locator (with autoscale > capability) on 1 decade for minor ticks, and repeat this minor tick on > each decade as I have done with my subs, I think we can have a very nic= e > framework to have fully automatic and nicely configurable log ticking > :-)=20 >=20 >=20 > Best regards, >=20 > Greg. >=20 > PS: the 2 modified files are included, I made my modif relative to > CVS... >=20 >=20 >>-----Message d'origine----- >>De : mat...@li...=20 >>[mailto:mat...@li...] De la=20 >>part de Dominique Orban >>Envoy=E9 : mardi 17 ao=FBt 2004 18:57 >>=C0 : mat...@li... >>Objet : [Matplotlib-users] Log plot in base b? >> >> >>Hi, >> >>What would be the easiest way, in matplotlib, to achieve log scaling,=20 >>along the x axis, say, in a base other than 10? I see in axes.py that=20 >>semilog[xy] have LOG10 hardwired. I am using matplotlib 0.60.2. >> >>Thanks, >>Dominique |
From: Paul B. <ba...@st...> - 2004-08-18 19:26:58
|
John Hunter wrote: > I'm forwarding this problem from the scipy list > > > > ------------------------------------------------------------------------ > > Subject: > Matplotlib font encoding problem > From: > Alan G Isaac <ai...@am...> > Date: > Tue, 17 Aug 2004 23:17:34 -0400 (Eastern Daylight Time) > To: > scipy-user <sci...@sc...> > > To: > scipy-user <sci...@sc...> > CC: > jdh...@ni... > > > Matplotlib is doing something with its fonts that > is unfriendly. E.g., Ghostscript and Distiller choke on > http://www.american.edu/econ/problems/matplotlib.fontproblem.eps > > Ghostscript says it is an invalid front. > > If I get rid of the verdana font encoding, the file displays fine. > > I have the same problem when I try to use the TeX fonts. Hi Alan, I'm not sure what is going on here, but I can tell you that the Verdana font is somehow being corrupted, specifically the sfnts data. This font works fine for me with the simple_plot example. Comparing the embedded fonts in the two .eps files, shows that the font in your file is corrupted. There are two possibilities here: either your TrueType Font (TTF) file is corrupted, or your binascii.b2a_hex function in the Python library is producing corrupted output. This function converts the TTF file to ASCII hex and is likely to be the culprit, since the length of some of the lines in sfnts array are incorrect. They should be 72 characters in length unless they begin or end with a '<' or '>', resp.. -- Paul -- Paul Barrett, PhD Space Telescope Science Institute Phone: 410-338-4475 ESS/Science Software Branch FAX: 410-338-4767 Baltimore, MD 21218 |