You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(33) |
Dec
(20) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(7) |
Feb
(44) |
Mar
(51) |
Apr
(43) |
May
(43) |
Jun
(36) |
Jul
(61) |
Aug
(44) |
Sep
(25) |
Oct
(82) |
Nov
(97) |
Dec
(47) |
2005 |
Jan
(77) |
Feb
(143) |
Mar
(42) |
Apr
(31) |
May
(93) |
Jun
(93) |
Jul
(35) |
Aug
(78) |
Sep
(56) |
Oct
(44) |
Nov
(72) |
Dec
(75) |
2006 |
Jan
(116) |
Feb
(99) |
Mar
(181) |
Apr
(171) |
May
(112) |
Jun
(86) |
Jul
(91) |
Aug
(111) |
Sep
(77) |
Oct
(72) |
Nov
(57) |
Dec
(51) |
2007 |
Jan
(64) |
Feb
(116) |
Mar
(70) |
Apr
(74) |
May
(53) |
Jun
(40) |
Jul
(519) |
Aug
(151) |
Sep
(132) |
Oct
(74) |
Nov
(282) |
Dec
(190) |
2008 |
Jan
(141) |
Feb
(67) |
Mar
(69) |
Apr
(96) |
May
(227) |
Jun
(404) |
Jul
(399) |
Aug
(96) |
Sep
(120) |
Oct
(205) |
Nov
(126) |
Dec
(261) |
2009 |
Jan
(136) |
Feb
(136) |
Mar
(119) |
Apr
(124) |
May
(155) |
Jun
(98) |
Jul
(136) |
Aug
(292) |
Sep
(174) |
Oct
(126) |
Nov
(126) |
Dec
(79) |
2010 |
Jan
(109) |
Feb
(83) |
Mar
(139) |
Apr
(91) |
May
(79) |
Jun
(164) |
Jul
(184) |
Aug
(146) |
Sep
(163) |
Oct
(128) |
Nov
(70) |
Dec
(73) |
2011 |
Jan
(235) |
Feb
(165) |
Mar
(147) |
Apr
(86) |
May
(74) |
Jun
(118) |
Jul
(65) |
Aug
(75) |
Sep
(162) |
Oct
(94) |
Nov
(48) |
Dec
(44) |
2012 |
Jan
(49) |
Feb
(40) |
Mar
(88) |
Apr
(35) |
May
(52) |
Jun
(69) |
Jul
(90) |
Aug
(123) |
Sep
(112) |
Oct
(120) |
Nov
(105) |
Dec
(116) |
2013 |
Jan
(76) |
Feb
(26) |
Mar
(78) |
Apr
(43) |
May
(61) |
Jun
(53) |
Jul
(147) |
Aug
(85) |
Sep
(83) |
Oct
(122) |
Nov
(18) |
Dec
(27) |
2014 |
Jan
(58) |
Feb
(25) |
Mar
(49) |
Apr
(17) |
May
(29) |
Jun
(39) |
Jul
(53) |
Aug
(52) |
Sep
(35) |
Oct
(47) |
Nov
(110) |
Dec
(27) |
2015 |
Jan
(50) |
Feb
(93) |
Mar
(96) |
Apr
(30) |
May
(55) |
Jun
(83) |
Jul
(44) |
Aug
(8) |
Sep
(5) |
Oct
|
Nov
(1) |
Dec
(1) |
2016 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
(3) |
Sep
(1) |
Oct
(3) |
Nov
|
Dec
|
2017 |
Jan
|
Feb
(5) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(3) |
Aug
|
Sep
(7) |
Oct
|
Nov
|
Dec
|
2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Michael D. <md...@st...> - 2014-01-15 16:01:23
|
On 01/14/2014 03:43 PM, Cyrille Rossant wrote: >> What I'd love to see is some enhancement of the backend framework where >> there are some extra flags and information passed to the renderer: i.e. for >> each draw command, we need to know whether the drawn object should be linked >> to static figure coordinates or to dynamic axes/data coordinates. > +1. It would also be nice to have the possibility to bypass dynamic > data transformations performed by matplotlib. A potential GPU-based > backend would be the most efficient if it was granted the right to > perform all data transformations by itself (for example when panning > and zooming). > In the specific case of data transformations, this is already the case. The backends are sent the raw data + a transformation. This allows file formats to write out untransformed data and have the renderer of that format do the transformation. Unfortunately, all of the backends end up doing the transformation in software anyway, since all of them scale the line width along with the path data, which is never what you want for plotting. (The exception to this is the SVG spec, which now contains a flag for this, but that spec is so new we can't use it because it isn't widely implemented). Mike -- _ |\/|o _|_ _. _ | | \.__ __|__|_|_ _ _ ._ _ | ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | | http://www.droettboom.com |
From: Chris B. <bea...@ha...> - 2014-01-14 20:49:11
|
I have another long-simmering feature request along these lines: if Matplotlib were to evolve a formal DOM-like figure structure like mentioned above, it would be cool if this structure retained more semantic information about the visualization itself. By this, I mean that many high-level commands like hist, scatter, etc. spawn a bunch of low level artists like rectangles and circles. After these methods exit, it's hard/impossible to introspect a Figure and diagnose that it, for example, is a histogram and not a bar chart. Retaining a better high-level description of a plot (which probably amounts to creating more compound artist types) would make it easier to build tools like mpld3 and other cool things that involve runtime editing or optimization of tree-like data structures. chris On Tue, Jan 14, 2014 at 3:34 PM, Jacob Vanderplas <ja...@cs... > wrote: > On Tue, Jan 14, 2014 at 12:04 PM, Michael Droettboom <md...@st...>wrote: > >> >> I hope all of the above makes sense... >> > > Definitely makes sense: what I've built-up in mpld3 is essentially > something that mimics this sort of visitor pattern, though it misses some > things because of the draw-time difficulties you mention. > I think a two-stage draw() would be a _very_ helpful restructure. > Currently, I'm forced to achieve this result by writing a png to a > throwaway byte-stream... > Jake > > >> >> Mike >> >> >> On 01/14/2014 01:30 PM, Jacob Vanderplas wrote: >> >> Thanks - we'll make it happen at some point. >> >> Perhaps I can give the seed for a discussion: the stuff I've been doing >> with mpld3 is a lot of fun, but it's fundamentally limited by the fact that >> I have to dig around the internals of the figure object to find the >> relevant information to construct a plot representation. I may be able to >> do the same thing by creating a backend, but the problem is that the draw() >> methods of most objects call the renderer with no reference to whether the >> points lie in the data space or figure space: that is, paths and points are >> usually specified in figure/pixel coordinates or some transformed version >> thereof, which makes it near impossible to construct interactive >> representations absent Python kernel callbacks. >> >> What I'd love to see is some enhancement of the backend framework where >> there are some extra flags and information passed to the renderer: i.e. for >> each draw command, we need to know whether the drawn object should be >> linked to static figure coordinates or to dynamic axes/data coordinates. >> >> I've been in touch with Cyrille Rossant from the vispy team, Chris >> Beaumont from the Glue team, and Matt Sundwuist from the plotly team, all >> of whom asked if there might be a way to use what I've done with mpld3 to >> enable matplotlib to export into their own front-end format. I didn't >> start mpld3 with that sort of extensibility in mind, but I'm starting to >> invest some time thinking about how to design that. >> >> With the current matplotlib package, I think there are two ways to >> accomplish it: one is to create a general backend-like interface based on >> the figure introspection that mpld3 currently uses. The artist elements in >> each figure contain enough information to be able to infer whether the >> elements should move & zoom with the axes or not. The problem is, a lot of >> elements (like legends, axes aspects, etc.) are not fully established until >> the draw() command is called, so there are a few ugly hacks required to >> make it happen. >> >> The other option is to use an even uglier hack, and wrap the current >> backend framework with an object that somehow links back into the figure >> and infers from the draw_*() commands whether the path/point/marker/etc. >> should be drawn in static figure coordinates or in dynamic axes >> coordinates. I've started a simple prototype backend translator which has a >> renderer class that uses ``inspect`` back-trace the stack and accomplish >> this: It's really ugly, and I'm not particularly proud about it, but I >> think it's the current best way to accomplish the desired behavior. >> >> Ugly hacks aside, I think all of this points to a general desire for a >> new type of backend-like hook that can export dynamic plot elements in data >> coordinates, and static plot elements in figure coordinates. An >> enhancement in that direction could pave the way for a lot of interesting >> interactive front-ends to matplotlib figures. >> >> Anyway - if any of you have suggestions or responses to this, I'd love >> to hear them! Thanks, >> Jake >> >> >> On Tue, Jan 14, 2014 at 9:11 AM, Michael Droettboom <md...@st...>wrote: >> >>> Jake: I'd definitely like to get you into one of these calls at some >>> point. If you're able to pop in late, that would still be great -- or we >>> can save that for another date. Trying to get Japan, three NA timezones >>> and the UK all together is challenging ;) >>> >>> In any event, with Thomas, Ben, Michiel and myself confirmed, I think >>> that's enough to go ahead, and hopefully others who have yet to respond can >>> join as well. >>> >>> Mike >>> >>> >>> On 01/14/2014 11:57 AM, Jacob Vanderplas wrote: >>> >>> I'll probably not be able to swing 6am on the west coast, but other >>> folks are more important for this call, I think :) >>> Jake >>> >>> >>> On Tue, Jan 14, 2014 at 8:51 AM, Benjamin Root <ben...@ou...> wrote: >>> >>>> That would actually work a little bit better for me... I just have to >>>> remember to get into work a little bit earlier. >>>> >>>> Ben >>>> >>>> On Tue, Jan 14, 2014 at 11:36 AM, Michael Droettboom <md...@st...>wrote: >>>> >>>>> I'm fine with starting the meeting an hour early. How about others? >>>>> >>>>> Mike >>>>> >>>>> On 01/14/2014 04:57 AM, Michiel de Hoon wrote: >>>>> > I can join this Thursday if we start with the discussion on timers. >>>>> > If we can start 1 hour earlier (14:00 UTC, 9 am ET, 23:00 in Japan) >>>>> that would be even better. >>>>> > -Michiel. >>>>> > >>>>> > >>>>> > >>>>> > -------------------------------------------- >>>>> > On Mon, 1/13/14, Michael Droettboom <md...@st...> wrote: >>>>> > >>>>> > Subject: [matplotlib-devel] Meeting...? >>>>> > To: "mat...@li..." < >>>>> mat...@li...> >>>>> > Date: Monday, January 13, 2014, 11:36 AM >>>>> > >>>>> > It's probably a good time to schedule >>>>> > another matplotlib Google Hangout. >>>>> > >>>>> > Is this Thursday at 1500 UTC (10 am ET) too short notice for >>>>> > the usual >>>>> > candidates? >>>>> > >>>>> > I know there was discussion of getting Michiel de Hoon on >>>>> > today (which I >>>>> > just saw, unfortunately). Is there another time in the >>>>> > future that >>>>> > works for you, Michiel? >>>>> > >>>>> > Mike >>>>> > >>>>> > -- >>>>> > >>>>> > _ >>>>> > |\/|o _|_ _. _ | | \.__ __|__|_|_ _ >>>>> > _ ._ _ >>>>> > | ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | | >>>>> > >>>>> > http://www.droettboom.com >>>>> > >>>>> > >>>>> > >>>>> ------------------------------------------------------------------------------ >>>>> > CenturyLink Cloud: The Leader in Enterprise Cloud Services. >>>>> > Learn Why More Businesses Are Choosing CenturyLink Cloud >>>>> > For >>>>> > Critical Workloads, Development Environments & >>>>> > Everything In Between. >>>>> > Get a Quote or Start a Free Trial Today. >>>>> > >>>>> http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk >>>>> > _______________________________________________ >>>>> > Matplotlib-devel mailing list >>>>> > Mat...@li... >>>>> > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >>>>> > >>>>> >>>>> >>>>> -- >>>>> _ >>>>> |\/|o _|_ _. _ | | \.__ __|__|_|_ _ _ ._ _ >>>>> | ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | | >>>>> >>>>> http://www.droettboom.com >>>>> >>>>> >>>>> >>>>> ------------------------------------------------------------------------------ >>>>> CenturyLink Cloud: The Leader in Enterprise Cloud Services. >>>>> Learn Why More Businesses Are Choosing CenturyLink Cloud For >>>>> Critical Workloads, Development Environments & Everything In Between. >>>>> Get a Quote or Start a Free Trial Today. >>>>> >>>>> http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk >>>>> _______________________________________________ >>>>> Matplotlib-devel mailing list >>>>> Mat...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >>>>> >>>> >>>> >>>> >>>> ------------------------------------------------------------------------------ >>>> CenturyLink Cloud: The Leader in Enterprise Cloud Services. >>>> Learn Why More Businesses Are Choosing CenturyLink Cloud For >>>> Critical Workloads, Development Environments & Everything In Between. >>>> Get a Quote or Start a Free Trial Today. >>>> >>>> http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk >>>> _______________________________________________ >>>> Matplotlib-devel mailing list >>>> Mat...@li... >>>> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >>>> >>>> >>> >>> >>> -- >>> _ >>> |\/|o _|_ _. _ | | \.__ __|__|_|_ _ _ ._ _ >>> | ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | | >>> http://www.droettboom.com >>> >>> >> >> >> -- >> _ >> |\/|o _|_ _. _ | | \.__ __|__|_|_ _ _ ._ _ >> | ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | | >> http://www.droettboom.com >> >> > > > ------------------------------------------------------------------------------ > CenturyLink Cloud: The Leader in Enterprise Cloud Services. > Learn Why More Businesses Are Choosing CenturyLink Cloud For > Critical Workloads, Development Environments & Everything In Between. > Get a Quote or Start a Free Trial Today. > > http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel > > -- ************************************ Chris Beaumont Graduate Student Institute for Astronomy University of Hawaii at Manoa 2680 Woodlawn Drive Honolulu, HI 96822 www.ifa.hawaii.edu/~beaumont ************************************ |
From: Cyrille R. <cyr...@gm...> - 2014-01-14 20:43:52
|
> What I'd love to see is some enhancement of the backend framework where > there are some extra flags and information passed to the renderer: i.e. for > each draw command, we need to know whether the drawn object should be linked > to static figure coordinates or to dynamic axes/data coordinates. +1. It would also be nice to have the possibility to bypass dynamic data transformations performed by matplotlib. A potential GPU-based backend would be the most efficient if it was granted the right to perform all data transformations by itself (for example when panning and zooming). Cyrille |
From: Jacob V. <ja...@cs...> - 2014-01-14 20:34:16
|
On Tue, Jan 14, 2014 at 12:04 PM, Michael Droettboom <md...@st...>wrote: > > I hope all of the above makes sense... > Definitely makes sense: what I've built-up in mpld3 is essentially something that mimics this sort of visitor pattern, though it misses some things because of the draw-time difficulties you mention. I think a two-stage draw() would be a _very_ helpful restructure. Currently, I'm forced to achieve this result by writing a png to a throwaway byte-stream... Jake > > Mike > > > On 01/14/2014 01:30 PM, Jacob Vanderplas wrote: > > Thanks - we'll make it happen at some point. > > Perhaps I can give the seed for a discussion: the stuff I've been doing > with mpld3 is a lot of fun, but it's fundamentally limited by the fact that > I have to dig around the internals of the figure object to find the > relevant information to construct a plot representation. I may be able to > do the same thing by creating a backend, but the problem is that the draw() > methods of most objects call the renderer with no reference to whether the > points lie in the data space or figure space: that is, paths and points are > usually specified in figure/pixel coordinates or some transformed version > thereof, which makes it near impossible to construct interactive > representations absent Python kernel callbacks. > > What I'd love to see is some enhancement of the backend framework where > there are some extra flags and information passed to the renderer: i.e. for > each draw command, we need to know whether the drawn object should be > linked to static figure coordinates or to dynamic axes/data coordinates. > > I've been in touch with Cyrille Rossant from the vispy team, Chris > Beaumont from the Glue team, and Matt Sundwuist from the plotly team, all > of whom asked if there might be a way to use what I've done with mpld3 to > enable matplotlib to export into their own front-end format. I didn't > start mpld3 with that sort of extensibility in mind, but I'm starting to > invest some time thinking about how to design that. > > With the current matplotlib package, I think there are two ways to > accomplish it: one is to create a general backend-like interface based on > the figure introspection that mpld3 currently uses. The artist elements in > each figure contain enough information to be able to infer whether the > elements should move & zoom with the axes or not. The problem is, a lot of > elements (like legends, axes aspects, etc.) are not fully established until > the draw() command is called, so there are a few ugly hacks required to > make it happen. > > The other option is to use an even uglier hack, and wrap the current > backend framework with an object that somehow links back into the figure > and infers from the draw_*() commands whether the path/point/marker/etc. > should be drawn in static figure coordinates or in dynamic axes > coordinates. I've started a simple prototype backend translator which has a > renderer class that uses ``inspect`` back-trace the stack and accomplish > this: It's really ugly, and I'm not particularly proud about it, but I > think it's the current best way to accomplish the desired behavior. > > Ugly hacks aside, I think all of this points to a general desire for a > new type of backend-like hook that can export dynamic plot elements in data > coordinates, and static plot elements in figure coordinates. An > enhancement in that direction could pave the way for a lot of interesting > interactive front-ends to matplotlib figures. > > Anyway - if any of you have suggestions or responses to this, I'd love > to hear them! Thanks, > Jake > > > On Tue, Jan 14, 2014 at 9:11 AM, Michael Droettboom <md...@st...>wrote: > >> Jake: I'd definitely like to get you into one of these calls at some >> point. If you're able to pop in late, that would still be great -- or we >> can save that for another date. Trying to get Japan, three NA timezones >> and the UK all together is challenging ;) >> >> In any event, with Thomas, Ben, Michiel and myself confirmed, I think >> that's enough to go ahead, and hopefully others who have yet to respond can >> join as well. >> >> Mike >> >> >> On 01/14/2014 11:57 AM, Jacob Vanderplas wrote: >> >> I'll probably not be able to swing 6am on the west coast, but other folks >> are more important for this call, I think :) >> Jake >> >> >> On Tue, Jan 14, 2014 at 8:51 AM, Benjamin Root <ben...@ou...> wrote: >> >>> That would actually work a little bit better for me... I just have to >>> remember to get into work a little bit earlier. >>> >>> Ben >>> >>> On Tue, Jan 14, 2014 at 11:36 AM, Michael Droettboom <md...@st...>wrote: >>> >>>> I'm fine with starting the meeting an hour early. How about others? >>>> >>>> Mike >>>> >>>> On 01/14/2014 04:57 AM, Michiel de Hoon wrote: >>>> > I can join this Thursday if we start with the discussion on timers. >>>> > If we can start 1 hour earlier (14:00 UTC, 9 am ET, 23:00 in Japan) >>>> that would be even better. >>>> > -Michiel. >>>> > >>>> > >>>> > >>>> > -------------------------------------------- >>>> > On Mon, 1/13/14, Michael Droettboom <md...@st...> wrote: >>>> > >>>> > Subject: [matplotlib-devel] Meeting...? >>>> > To: "mat...@li..." < >>>> mat...@li...> >>>> > Date: Monday, January 13, 2014, 11:36 AM >>>> > >>>> > It's probably a good time to schedule >>>> > another matplotlib Google Hangout. >>>> > >>>> > Is this Thursday at 1500 UTC (10 am ET) too short notice for >>>> > the usual >>>> > candidates? >>>> > >>>> > I know there was discussion of getting Michiel de Hoon on >>>> > today (which I >>>> > just saw, unfortunately). Is there another time in the >>>> > future that >>>> > works for you, Michiel? >>>> > >>>> > Mike >>>> > >>>> > -- >>>> > >>>> > _ >>>> > |\/|o _|_ _. _ | | \.__ __|__|_|_ _ >>>> > _ ._ _ >>>> > | ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | | >>>> > >>>> > http://www.droettboom.com >>>> > >>>> > >>>> > >>>> ------------------------------------------------------------------------------ >>>> > CenturyLink Cloud: The Leader in Enterprise Cloud Services. >>>> > Learn Why More Businesses Are Choosing CenturyLink Cloud >>>> > For >>>> > Critical Workloads, Development Environments & >>>> > Everything In Between. >>>> > Get a Quote or Start a Free Trial Today. >>>> > >>>> http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk >>>> > _______________________________________________ >>>> > Matplotlib-devel mailing list >>>> > Mat...@li... >>>> > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >>>> > >>>> >>>> >>>> -- >>>> _ >>>> |\/|o _|_ _. _ | | \.__ __|__|_|_ _ _ ._ _ >>>> | ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | | >>>> >>>> http://www.droettboom.com >>>> >>>> >>>> >>>> ------------------------------------------------------------------------------ >>>> CenturyLink Cloud: The Leader in Enterprise Cloud Services. >>>> Learn Why More Businesses Are Choosing CenturyLink Cloud For >>>> Critical Workloads, Development Environments & Everything In Between. >>>> Get a Quote or Start a Free Trial Today. >>>> >>>> http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk >>>> _______________________________________________ >>>> Matplotlib-devel mailing list >>>> Mat...@li... >>>> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >>>> >>> >>> >>> >>> ------------------------------------------------------------------------------ >>> CenturyLink Cloud: The Leader in Enterprise Cloud Services. >>> Learn Why More Businesses Are Choosing CenturyLink Cloud For >>> Critical Workloads, Development Environments & Everything In Between. >>> Get a Quote or Start a Free Trial Today. >>> >>> http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk >>> _______________________________________________ >>> Matplotlib-devel mailing list >>> Mat...@li... >>> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >>> >>> >> >> >> -- >> _ >> |\/|o _|_ _. _ | | \.__ __|__|_|_ _ _ ._ _ >> | ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | | >> http://www.droettboom.com >> >> > > > -- > _ > |\/|o _|_ _. _ | | \.__ __|__|_|_ _ _ ._ _ > | ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | | > http://www.droettboom.com > > |
From: Michael D. <md...@st...> - 2014-01-14 20:12:24
|
I'm sure it's obvious, but the backend API was never really designed with this in mind. It was designed for "dumb" things like screens and printers that know about simple primitives like lines and text, but not much else. From that, I don't think it makes much sense to change or even extend that API, as the current targets of the backends are not going to suddenly get any smarter. You also have to remember that the drawing commands that matplotlib emits to a backend are essentially a stream -- they don't have the necessary structure (in all cases) to write out to something like d3. You really want tree traversal, IMHO, not a stream of commands. For a long time, I've felt what is needed is a standard way to navigate over the tree that makes up the figure -- something like a DOM. So you would start at the root (the "figure") and drill down through all of the objects, getting their properties such as location, data and drawing styles and convert into some other format as you go. Your code wouldn't have to care about what coordinate space the data is in -- it would have access to the raw data and any custom transformations the user specified etc., and it could handle accordingly. There's two major pieces that make this hard right now. One is that each class has some arbitrary set of "children", and there's no uniform way to iterate over them. If each Artist had a children method that returns a list of its children, you could write a "Visitor" pattern [1] class over the tree that would let you write out your output format. The second problem, as you point out, is that some things aren't really calculated until draw time. In some cases, we could just be doing more in the constructor. In other cases, we can't calculate the final locations of things until we know things like font size etc., but hopefully those aren't the cases a tool to write d3 would care about. I could also imagine doing drawing in two phases, if necessary, one to just finalize things, and the other to actually write to a "dumb" backend. A d3 converter would only do the first phase, and then iterate over the tree to generate its output. [1] See Python's ast module or docutils for great examples of this pattern. docutils is a particular good analogy because it converts text in one complex logical structure (reStructuredText) to n different other logical structures (including HTML and LaTeX etc.) I hope all of the above makes sense... Mike On 01/14/2014 01:30 PM, Jacob Vanderplas wrote: > Thanks - we'll make it happen at some point. > > Perhaps I can give the seed for a discussion: the stuff I've been > doing with mpld3 is a lot of fun, but it's fundamentally limited by > the fact that I have to dig around the internals of the figure object > to find the relevant information to construct a plot representation. > I may be able to do the same thing by creating a backend, but the > problem is that the draw() methods of most objects call the renderer > with no reference to whether the points lie in the data space or > figure space: that is, paths and points are usually specified in > figure/pixel coordinates or some transformed version thereof, which > makes it near impossible to construct interactive representations > absent Python kernel callbacks. > > What I'd love to see is some enhancement of the backend framework > where there are some extra flags and information passed to the > renderer: i.e. for each draw command, we need to know whether the > drawn object should be linked to static figure coordinates or to > dynamic axes/data coordinates. > > I've been in touch with Cyrille Rossant from the vispy team, Chris > Beaumont from the Glue team, and Matt Sundwuist from the plotly team, > all of whom asked if there might be a way to use what I've done with > mpld3 to enable matplotlib to export into their own front-end format. > I didn't start mpld3 with that sort of extensibility in mind, but I'm > starting to invest some time thinking about how to design that. > > With the current matplotlib package, I think there are two ways to > accomplish it: one is to create a general backend-like interface based > on the figure introspection that mpld3 currently uses. The artist > elements in each figure contain enough information to be able to infer > whether the elements should move & zoom with the axes or not. The > problem is, a lot of elements (like legends, axes aspects, etc.) are > not fully established until the draw() command is called, so there are > a few ugly hacks required to make it happen. > > The other option is to use an even uglier hack, and wrap the current > backend framework with an object that somehow links back into the > figure and infers from the draw_*() commands whether the > path/point/marker/etc. should be drawn in static figure coordinates or > in dynamic axes coordinates. I've started a simple prototype backend > translator which has a renderer class that uses ``inspect`` back-trace > the stack and accomplish this: It's really ugly, and I'm not > particularly proud about it, but I think it's the current best way to > accomplish the desired behavior. > > Ugly hacks aside, I think all of this points to a general desire for a > new type of backend-like hook that can export dynamic plot elements in > data coordinates, and static plot elements in figure coordinates. An > enhancement in that direction could pave the way for a lot of > interesting interactive front-ends to matplotlib figures. > > Anyway - if any of you have suggestions or responses to this, I'd love > to hear them! Thanks, > Jake > > > On Tue, Jan 14, 2014 at 9:11 AM, Michael Droettboom <md...@st... > <mailto:md...@st...>> wrote: > > Jake: I'd definitely like to get you into one of these calls at > some point. If you're able to pop in late, that would still be > great -- or we can save that for another date. Trying to get > Japan, three NA timezones and the UK all together is challenging ;) > > In any event, with Thomas, Ben, Michiel and myself confirmed, I > think that's enough to go ahead, and hopefully others who have yet > to respond can join as well. > > Mike > > > On 01/14/2014 11:57 AM, Jacob Vanderplas wrote: >> I'll probably not be able to swing 6am on the west coast, but >> other folks are more important for this call, I think :) >> Jake >> >> >> On Tue, Jan 14, 2014 at 8:51 AM, Benjamin Root <ben...@ou... >> <mailto:ben...@ou...>> wrote: >> >> That would actually work a little bit better for me... I just >> have to remember to get into work a little bit earlier. >> >> Ben >> >> On Tue, Jan 14, 2014 at 11:36 AM, Michael Droettboom >> <md...@st... <mailto:md...@st...>> wrote: >> >> I'm fine with starting the meeting an hour early. How >> about others? >> >> Mike >> >> On 01/14/2014 04:57 AM, Michiel de Hoon wrote: >> > I can join this Thursday if we start with the >> discussion on timers. >> > If we can start 1 hour earlier (14:00 UTC, 9 am ET, >> 23:00 in Japan) that would be even better. >> > -Michiel. >> > >> > >> > >> > -------------------------------------------- >> > On Mon, 1/13/14, Michael Droettboom <md...@st... >> <mailto:md...@st...>> wrote: >> > >> > Subject: [matplotlib-devel] Meeting...? >> > To: "mat...@li... >> <mailto:mat...@li...>" >> <mat...@li... >> <mailto:mat...@li...>> >> > Date: Monday, January 13, 2014, 11:36 AM >> > >> > It's probably a good time to schedule >> > another matplotlib Google Hangout. >> > >> > Is this Thursday at 1500 UTC (10 am ET) too short >> notice for >> > the usual >> > candidates? >> > >> > I know there was discussion of getting Michiel de Hoon on >> > today (which I >> > just saw, unfortunately). Is there another time in the >> > future that >> > works for you, Michiel? >> > >> > Mike >> > >> > -- >> > >> > _ >> > |\/|o _|_ _. _ | | \.__ __|__|_|_ _ >> > _ ._ _ >> > | ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | | >> > >> > http://www.droettboom.com >> > >> > >> > >> ------------------------------------------------------------------------------ >> > CenturyLink Cloud: The Leader in Enterprise Cloud >> Services. >> > Learn Why More Businesses Are Choosing CenturyLink Cloud >> > For >> > Critical Workloads, Development Environments & >> > Everything In Between. >> > Get a Quote or Start a Free Trial Today. >> > >> http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk >> > _______________________________________________ >> > Matplotlib-devel mailing list >> > Mat...@li... >> <mailto:Mat...@li...> >> > >> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >> > >> >> >> -- >> _ >> |\/|o _|_ _. _ | | \.__ __|__|_|_ _ _ ._ _ >> | ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | | >> >> http://www.droettboom.com >> >> >> ------------------------------------------------------------------------------ >> CenturyLink Cloud: The Leader in Enterprise Cloud Services. >> Learn Why More Businesses Are Choosing CenturyLink Cloud For >> Critical Workloads, Development Environments & Everything >> In Between. >> Get a Quote or Start a Free Trial Today. >> http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk >> _______________________________________________ >> Matplotlib-devel mailing list >> Mat...@li... >> <mailto:Mat...@li...> >> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >> >> >> >> ------------------------------------------------------------------------------ >> CenturyLink Cloud: The Leader in Enterprise Cloud Services. >> Learn Why More Businesses Are Choosing CenturyLink Cloud For >> Critical Workloads, Development Environments & Everything In >> Between. >> Get a Quote or Start a Free Trial Today. >> http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk >> _______________________________________________ >> Matplotlib-devel mailing list >> Mat...@li... >> <mailto:Mat...@li...> >> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >> >> > > > -- > _ > |\/|o _|_ _. _ | | \.__ __|__|_|_ _ _ ._ _ > | ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | | > > http://www.droettboom.com > > -- _ |\/|o _|_ _. _ | | \.__ __|__|_|_ _ _ ._ _ | ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | | http://www.droettboom.com |
From: Jason G. <jas...@cr...> - 2014-01-14 19:07:07
|
On 1/14/14, 1:30 PM, Jacob Vanderplas wrote: > Ugly hacks aside, I think all of this points to a general desire for a > new type of backend-like hook that can export dynamic plot elements in > data coordinates, and static plot elements in figure coordinates. An > enhancement in that direction could pave the way for a lot of > interesting interactive front-ends to matplotlib figures. A *very* big +1. I'm really excited about doing IPython widgets these days, and this would make a matplotlib IPython widget pretty exciting. Thanks, Jason |
From: Jacob V. <ja...@cs...> - 2014-01-14 18:36:24
|
Thanks - we'll make it happen at some point. Perhaps I can give the seed for a discussion: the stuff I've been doing with mpld3 is a lot of fun, but it's fundamentally limited by the fact that I have to dig around the internals of the figure object to find the relevant information to construct a plot representation. I may be able to do the same thing by creating a backend, but the problem is that the draw() methods of most objects call the renderer with no reference to whether the points lie in the data space or figure space: that is, paths and points are usually specified in figure/pixel coordinates or some transformed version thereof, which makes it near impossible to construct interactive representations absent Python kernel callbacks. What I'd love to see is some enhancement of the backend framework where there are some extra flags and information passed to the renderer: i.e. for each draw command, we need to know whether the drawn object should be linked to static figure coordinates or to dynamic axes/data coordinates. I've been in touch with Cyrille Rossant from the vispy team, Chris Beaumont from the Glue team, and Matt Sundwuist from the plotly team, all of whom asked if there might be a way to use what I've done with mpld3 to enable matplotlib to export into their own front-end format. I didn't start mpld3 with that sort of extensibility in mind, but I'm starting to invest some time thinking about how to design that. With the current matplotlib package, I think there are two ways to accomplish it: one is to create a general backend-like interface based on the figure introspection that mpld3 currently uses. The artist elements in each figure contain enough information to be able to infer whether the elements should move & zoom with the axes or not. The problem is, a lot of elements (like legends, axes aspects, etc.) are not fully established until the draw() command is called, so there are a few ugly hacks required to make it happen. The other option is to use an even uglier hack, and wrap the current backend framework with an object that somehow links back into the figure and infers from the draw_*() commands whether the path/point/marker/etc. should be drawn in static figure coordinates or in dynamic axes coordinates. I've started a simple prototype backend translator which has a renderer class that uses ``inspect`` back-trace the stack and accomplish this: It's really ugly, and I'm not particularly proud about it, but I think it's the current best way to accomplish the desired behavior. Ugly hacks aside, I think all of this points to a general desire for a new type of backend-like hook that can export dynamic plot elements in data coordinates, and static plot elements in figure coordinates. An enhancement in that direction could pave the way for a lot of interesting interactive front-ends to matplotlib figures. Anyway - if any of you have suggestions or responses to this, I'd love to hear them! Thanks, Jake On Tue, Jan 14, 2014 at 9:11 AM, Michael Droettboom <md...@st...> wrote: > Jake: I'd definitely like to get you into one of these calls at some > point. If you're able to pop in late, that would still be great -- or we > can save that for another date. Trying to get Japan, three NA timezones > and the UK all together is challenging ;) > > In any event, with Thomas, Ben, Michiel and myself confirmed, I think > that's enough to go ahead, and hopefully others who have yet to respond can > join as well. > > Mike > > > On 01/14/2014 11:57 AM, Jacob Vanderplas wrote: > > I'll probably not be able to swing 6am on the west coast, but other folks > are more important for this call, I think :) > Jake > > > On Tue, Jan 14, 2014 at 8:51 AM, Benjamin Root <ben...@ou...> wrote: > >> That would actually work a little bit better for me... I just have to >> remember to get into work a little bit earlier. >> >> Ben >> >> On Tue, Jan 14, 2014 at 11:36 AM, Michael Droettboom <md...@st...>wrote: >> >>> I'm fine with starting the meeting an hour early. How about others? >>> >>> Mike >>> >>> On 01/14/2014 04:57 AM, Michiel de Hoon wrote: >>> > I can join this Thursday if we start with the discussion on timers. >>> > If we can start 1 hour earlier (14:00 UTC, 9 am ET, 23:00 in Japan) >>> that would be even better. >>> > -Michiel. >>> > >>> > >>> > >>> > -------------------------------------------- >>> > On Mon, 1/13/14, Michael Droettboom <md...@st...> wrote: >>> > >>> > Subject: [matplotlib-devel] Meeting...? >>> > To: "mat...@li..." < >>> mat...@li...> >>> > Date: Monday, January 13, 2014, 11:36 AM >>> > >>> > It's probably a good time to schedule >>> > another matplotlib Google Hangout. >>> > >>> > Is this Thursday at 1500 UTC (10 am ET) too short notice for >>> > the usual >>> > candidates? >>> > >>> > I know there was discussion of getting Michiel de Hoon on >>> > today (which I >>> > just saw, unfortunately). Is there another time in the >>> > future that >>> > works for you, Michiel? >>> > >>> > Mike >>> > >>> > -- >>> > >>> > _ >>> > |\/|o _|_ _. _ | | \.__ __|__|_|_ _ >>> > _ ._ _ >>> > | ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | | >>> > >>> > http://www.droettboom.com >>> > >>> > >>> > >>> ------------------------------------------------------------------------------ >>> > CenturyLink Cloud: The Leader in Enterprise Cloud Services. >>> > Learn Why More Businesses Are Choosing CenturyLink Cloud >>> > For >>> > Critical Workloads, Development Environments & >>> > Everything In Between. >>> > Get a Quote or Start a Free Trial Today. >>> > >>> http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk >>> > _______________________________________________ >>> > Matplotlib-devel mailing list >>> > Mat...@li... >>> > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >>> > >>> >>> >>> -- >>> _ >>> |\/|o _|_ _. _ | | \.__ __|__|_|_ _ _ ._ _ >>> | ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | | >>> >>> http://www.droettboom.com >>> >>> >>> >>> ------------------------------------------------------------------------------ >>> CenturyLink Cloud: The Leader in Enterprise Cloud Services. >>> Learn Why More Businesses Are Choosing CenturyLink Cloud For >>> Critical Workloads, Development Environments & Everything In Between. >>> Get a Quote or Start a Free Trial Today. >>> >>> http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk >>> _______________________________________________ >>> Matplotlib-devel mailing list >>> Mat...@li... >>> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >>> >> >> >> >> ------------------------------------------------------------------------------ >> CenturyLink Cloud: The Leader in Enterprise Cloud Services. >> Learn Why More Businesses Are Choosing CenturyLink Cloud For >> Critical Workloads, Development Environments & Everything In Between. >> Get a Quote or Start a Free Trial Today. >> >> http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk >> _______________________________________________ >> Matplotlib-devel mailing list >> Mat...@li... >> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >> >> > > > -- > _ > |\/|o _|_ _. _ | | \.__ __|__|_|_ _ _ ._ _ > | ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | | > http://www.droettboom.com > > |
From: Michael D. <md...@st...> - 2014-01-14 17:13:21
|
Jake: I'd definitely like to get you into one of these calls at some point. If you're able to pop in late, that would still be great -- or we can save that for another date. Trying to get Japan, three NA timezones and the UK all together is challenging ;) In any event, with Thomas, Ben, Michiel and myself confirmed, I think that's enough to go ahead, and hopefully others who have yet to respond can join as well. Mike On 01/14/2014 11:57 AM, Jacob Vanderplas wrote: > I'll probably not be able to swing 6am on the west coast, but other > folks are more important for this call, I think :) > Jake > > > On Tue, Jan 14, 2014 at 8:51 AM, Benjamin Root <ben...@ou... > <mailto:ben...@ou...>> wrote: > > That would actually work a little bit better for me... I just have > to remember to get into work a little bit earlier. > > Ben > > On Tue, Jan 14, 2014 at 11:36 AM, Michael Droettboom > <md...@st... <mailto:md...@st...>> wrote: > > I'm fine with starting the meeting an hour early. How about > others? > > Mike > > On 01/14/2014 04:57 AM, Michiel de Hoon wrote: > > I can join this Thursday if we start with the discussion on > timers. > > If we can start 1 hour earlier (14:00 UTC, 9 am ET, 23:00 in > Japan) that would be even better. > > -Michiel. > > > > > > > > -------------------------------------------- > > On Mon, 1/13/14, Michael Droettboom <md...@st... > <mailto:md...@st...>> wrote: > > > > Subject: [matplotlib-devel] Meeting...? > > To: "mat...@li... > <mailto:mat...@li...>" > <mat...@li... > <mailto:mat...@li...>> > > Date: Monday, January 13, 2014, 11:36 AM > > > > It's probably a good time to schedule > > another matplotlib Google Hangout. > > > > Is this Thursday at 1500 UTC (10 am ET) too short notice for > > the usual > > candidates? > > > > I know there was discussion of getting Michiel de Hoon on > > today (which I > > just saw, unfortunately). Is there another time in the > > future that > > works for you, Michiel? > > > > Mike > > > > -- > > > > _ > > |\/|o _|_ _. _ | | \.__ __|__|_|_ _ > > _ ._ _ > > | ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | | > > > > http://www.droettboom.com > > > > > > > ------------------------------------------------------------------------------ > > CenturyLink Cloud: The Leader in Enterprise Cloud Services. > > Learn Why More Businesses Are Choosing CenturyLink Cloud > > For > > Critical Workloads, Development Environments & > > Everything In Between. > > Get a Quote or Start a Free Trial Today. > > > http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk > > _______________________________________________ > > Matplotlib-devel mailing list > > Mat...@li... > <mailto:Mat...@li...> > > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel > > > > > -- > _ > |\/|o _|_ _. _ | | \.__ __|__|_|_ _ _ ._ _ > | ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | | > > http://www.droettboom.com > > > ------------------------------------------------------------------------------ > CenturyLink Cloud: The Leader in Enterprise Cloud Services. > Learn Why More Businesses Are Choosing CenturyLink Cloud For > Critical Workloads, Development Environments & Everything In > Between. > Get a Quote or Start a Free Trial Today. > http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > <mailto:Mat...@li...> > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel > > > > ------------------------------------------------------------------------------ > CenturyLink Cloud: The Leader in Enterprise Cloud Services. > Learn Why More Businesses Are Choosing CenturyLink Cloud For > Critical Workloads, Development Environments & Everything In Between. > Get a Quote or Start a Free Trial Today. > http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > <mailto:Mat...@li...> > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel > > -- _ |\/|o _|_ _. _ | | \.__ __|__|_|_ _ _ ._ _ | ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | | http://www.droettboom.com |
From: Jacob V. <ja...@cs...> - 2014-01-14 16:57:41
|
I'll probably not be able to swing 6am on the west coast, but other folks are more important for this call, I think :) Jake On Tue, Jan 14, 2014 at 8:51 AM, Benjamin Root <ben...@ou...> wrote: > That would actually work a little bit better for me... I just have to > remember to get into work a little bit earlier. > > Ben > > On Tue, Jan 14, 2014 at 11:36 AM, Michael Droettboom <md...@st...>wrote: > >> I'm fine with starting the meeting an hour early. How about others? >> >> Mike >> >> On 01/14/2014 04:57 AM, Michiel de Hoon wrote: >> > I can join this Thursday if we start with the discussion on timers. >> > If we can start 1 hour earlier (14:00 UTC, 9 am ET, 23:00 in Japan) >> that would be even better. >> > -Michiel. >> > >> > >> > >> > -------------------------------------------- >> > On Mon, 1/13/14, Michael Droettboom <md...@st...> wrote: >> > >> > Subject: [matplotlib-devel] Meeting...? >> > To: "mat...@li..." < >> mat...@li...> >> > Date: Monday, January 13, 2014, 11:36 AM >> > >> > It's probably a good time to schedule >> > another matplotlib Google Hangout. >> > >> > Is this Thursday at 1500 UTC (10 am ET) too short notice for >> > the usual >> > candidates? >> > >> > I know there was discussion of getting Michiel de Hoon on >> > today (which I >> > just saw, unfortunately). Is there another time in the >> > future that >> > works for you, Michiel? >> > >> > Mike >> > >> > -- >> > >> > _ >> > |\/|o _|_ _. _ | | \.__ __|__|_|_ _ >> > _ ._ _ >> > | ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | | >> > >> > http://www.droettboom.com >> > >> > >> > >> ------------------------------------------------------------------------------ >> > CenturyLink Cloud: The Leader in Enterprise Cloud Services. >> > Learn Why More Businesses Are Choosing CenturyLink Cloud >> > For >> > Critical Workloads, Development Environments & >> > Everything In Between. >> > Get a Quote or Start a Free Trial Today. >> > >> http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk >> > _______________________________________________ >> > Matplotlib-devel mailing list >> > Mat...@li... >> > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >> > >> >> >> -- >> _ >> |\/|o _|_ _. _ | | \.__ __|__|_|_ _ _ ._ _ >> | ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | | >> >> http://www.droettboom.com >> >> >> >> ------------------------------------------------------------------------------ >> CenturyLink Cloud: The Leader in Enterprise Cloud Services. >> Learn Why More Businesses Are Choosing CenturyLink Cloud For >> Critical Workloads, Development Environments & Everything In Between. >> Get a Quote or Start a Free Trial Today. >> >> http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk >> _______________________________________________ >> Matplotlib-devel mailing list >> Mat...@li... >> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >> > > > > ------------------------------------------------------------------------------ > CenturyLink Cloud: The Leader in Enterprise Cloud Services. > Learn Why More Businesses Are Choosing CenturyLink Cloud For > Critical Workloads, Development Environments & Everything In Between. > Get a Quote or Start a Free Trial Today. > > http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel > > |
From: Benjamin R. <ben...@ou...> - 2014-01-14 16:52:13
|
That would actually work a little bit better for me... I just have to remember to get into work a little bit earlier. Ben On Tue, Jan 14, 2014 at 11:36 AM, Michael Droettboom <md...@st...>wrote: > I'm fine with starting the meeting an hour early. How about others? > > Mike > > On 01/14/2014 04:57 AM, Michiel de Hoon wrote: > > I can join this Thursday if we start with the discussion on timers. > > If we can start 1 hour earlier (14:00 UTC, 9 am ET, 23:00 in Japan) that > would be even better. > > -Michiel. > > > > > > > > -------------------------------------------- > > On Mon, 1/13/14, Michael Droettboom <md...@st...> wrote: > > > > Subject: [matplotlib-devel] Meeting...? > > To: "mat...@li..." < > mat...@li...> > > Date: Monday, January 13, 2014, 11:36 AM > > > > It's probably a good time to schedule > > another matplotlib Google Hangout. > > > > Is this Thursday at 1500 UTC (10 am ET) too short notice for > > the usual > > candidates? > > > > I know there was discussion of getting Michiel de Hoon on > > today (which I > > just saw, unfortunately). Is there another time in the > > future that > > works for you, Michiel? > > > > Mike > > > > -- > > > > _ > > |\/|o _|_ _. _ | | \.__ __|__|_|_ _ > > _ ._ _ > > | ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | | > > > > http://www.droettboom.com > > > > > > > ------------------------------------------------------------------------------ > > CenturyLink Cloud: The Leader in Enterprise Cloud Services. > > Learn Why More Businesses Are Choosing CenturyLink Cloud > > For > > Critical Workloads, Development Environments & > > Everything In Between. > > Get a Quote or Start a Free Trial Today. > > > http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk > > _______________________________________________ > > Matplotlib-devel mailing list > > Mat...@li... > > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel > > > > > -- > _ > |\/|o _|_ _. _ | | \.__ __|__|_|_ _ _ ._ _ > | ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | | > > http://www.droettboom.com > > > > ------------------------------------------------------------------------------ > CenturyLink Cloud: The Leader in Enterprise Cloud Services. > Learn Why More Businesses Are Choosing CenturyLink Cloud For > Critical Workloads, Development Environments & Everything In Between. > Get a Quote or Start a Free Trial Today. > > http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel > |
From: Michael D. <md...@st...> - 2014-01-14 16:40:52
|
I'm fine with starting the meeting an hour early. How about others? Mike On 01/14/2014 04:57 AM, Michiel de Hoon wrote: > I can join this Thursday if we start with the discussion on timers. > If we can start 1 hour earlier (14:00 UTC, 9 am ET, 23:00 in Japan) that would be even better. > -Michiel. > > > > -------------------------------------------- > On Mon, 1/13/14, Michael Droettboom <md...@st...> wrote: > > Subject: [matplotlib-devel] Meeting...? > To: "mat...@li..." <mat...@li...> > Date: Monday, January 13, 2014, 11:36 AM > > It's probably a good time to schedule > another matplotlib Google Hangout. > > Is this Thursday at 1500 UTC (10 am ET) too short notice for > the usual > candidates? > > I know there was discussion of getting Michiel de Hoon on > today (which I > just saw, unfortunately). Is there another time in the > future that > works for you, Michiel? > > Mike > > -- > > _ > |\/|o _|_ _. _ | | \.__ __|__|_|_ _ > _ ._ _ > | ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | | > > http://www.droettboom.com > > > ------------------------------------------------------------------------------ > CenturyLink Cloud: The Leader in Enterprise Cloud Services. > Learn Why More Businesses Are Choosing CenturyLink Cloud > For > Critical Workloads, Development Environments & > Everything In Between. > Get a Quote or Start a Free Trial Today. > http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel > -- _ |\/|o _|_ _. _ | | \.__ __|__|_|_ _ _ ._ _ | ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | | http://www.droettboom.com |
From: Michiel de H. <mjl...@ya...> - 2014-01-14 09:57:10
|
I can join this Thursday if we start with the discussion on timers. If we can start 1 hour earlier (14:00 UTC, 9 am ET, 23:00 in Japan) that would be even better. -Michiel. -------------------------------------------- On Mon, 1/13/14, Michael Droettboom <md...@st...> wrote: Subject: [matplotlib-devel] Meeting...? To: "mat...@li..." <mat...@li...> Date: Monday, January 13, 2014, 11:36 AM It's probably a good time to schedule another matplotlib Google Hangout. Is this Thursday at 1500 UTC (10 am ET) too short notice for the usual candidates? I know there was discussion of getting Michiel de Hoon on today (which I just saw, unfortunately). Is there another time in the future that works for you, Michiel? Mike -- _ |\/|o _|_ _. _ | | \.__ __|__|_|_ _ _ ._ _ | ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | | http://www.droettboom.com ------------------------------------------------------------------------------ CenturyLink Cloud: The Leader in Enterprise Cloud Services. Learn Why More Businesses Are Choosing CenturyLink Cloud For Critical Workloads, Development Environments & Everything In Between. Get a Quote or Start a Free Trial Today. http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk _______________________________________________ Matplotlib-devel mailing list Mat...@li... https://lists.sourceforge.net/lists/listinfo/matplotlib-devel |
From: Eric F. <ef...@ha...> - 2014-01-13 20:59:58
|
On 2014/01/13 9:58 AM, Chris Beaumont wrote: > Hi Everyone, > > I found some time to look at the votes from the "Plot or Not?" > experiment Adrian Price-Whelan and I ran during SciPy last summer. You > can take a look at my summary at > http://datarazzi.wordpress.com/2014/01/13/plot-or-not-voting-results/, > or explore for yourself at http://plotornot.chrisbeaumont.org . Chris, Thanks for that nice summary. I'm in favor of a mechanism to make it easy to shift to better default styles, while also making it easy for legacy applications to stick with the original as desired. Eric > > Plot or Not was mostly a tongue-in-cheek idea, but there is nonetheless > some interesting information about style preferences in these data. I'm > happy to share the raw vote data if anyone is interested in digging further. > > Cheers, > Chris Beaumont > > > ------------------------------------------------------------------------------ > CenturyLink Cloud: The Leader in Enterprise Cloud Services. > Learn Why More Businesses Are Choosing CenturyLink Cloud For > Critical Workloads, Development Environments & Everything In Between. > Get a Quote or Start a Free Trial Today. > http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk > > > > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel > |
From: Chris B. <bea...@ha...> - 2014-01-13 19:58:45
|
Hi Everyone, I found some time to look at the votes from the "Plot or Not?" experiment Adrian Price-Whelan and I ran during SciPy last summer. You can take a look at my summary at http://datarazzi.wordpress.com/2014/01/13/plot-or-not-voting-results/, or explore for yourself at http://plotornot.chrisbeaumont.org . Plot or Not was mostly a tongue-in-cheek idea, but there is nonetheless some interesting information about style preferences in these data. I'm happy to share the raw vote data if anyone is interested in digging further. Cheers, Chris Beaumont |
From: Eric F. <ef...@ha...> - 2014-01-13 18:23:23
|
On 2014/01/13 5:11 AM, Michael Droettboom wrote: > This looks quite good to me. > And to me. If the implementation works out well, this will be a very nice and much needed refactoring. Eric > I'd like some feedback from Thomas Caswell, who's looked at this part of > the code much more than I have lately, but assuming he's ok, you have my > go ahead to start the implementation. > > Cheers, > Mike > > On 01/08/2014 10:55 AM, Federico Ariza wrote: >> Hello everybody. >> >> I just created a new >> MEPhttps://github.com/matplotlib/matplotlib/wiki/Mep22 that is open >> for discussion and destruction. >> >> Background: >> >> In my way to get a MultiFigureManager PR >> https://github.com/matplotlib/matplotlib/pull/2465 we came to the >> conclusion that the work has to be splitted in smaller PRs. >> >> One of the goals of my PR was to "Be able to easily modify the toolbar >> adding and removing toolitems." This mostly breakes the existing >> infrastructure of Toolbar. >> >> Working on a smaller PR https://github.com/matplotlib/matplotlib/pull/2557 >> to address this point, it became clear that a more radical change was >> needed to have a clean interface for "User Interaction tools" >> >> To make it easier to discuss, I created the MEP22 proposing a >> separation of powers (insert political joke here). It is open to all >> kind of modifications so don't be shy. >> >> As reference, there are a couple of previous PRs relating to this >> https://github.com/matplotlib/matplotlib/pull/1849 and >> https://github.com/matplotlib/matplotlib/pull/2557 >> Both of these don't address the problem of reconfiguration >> >> Thank you >> Federico >> > > |
From: Thomas C. <tca...@gm...> - 2014-01-13 16:43:54
|
I can do Thursday. Tom On Mon, Jan 13, 2014 at 10:36 AM, Michael Droettboom <md...@st...> wrote: > It's probably a good time to schedule another matplotlib Google Hangout. > > Is this Thursday at 1500 UTC (10 am ET) too short notice for the usual > candidates? > > I know there was discussion of getting Michiel de Hoon on today (which I > just saw, unfortunately). Is there another time in the future that > works for you, Michiel? > > Mike > > -- > _ > |\/|o _|_ _. _ | | \.__ __|__|_|_ _ _ ._ _ > | ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | | > > http://www.droettboom.com > > > ------------------------------------------------------------------------------ > CenturyLink Cloud: The Leader in Enterprise Cloud Services. > Learn Why More Businesses Are Choosing CenturyLink Cloud For > Critical Workloads, Development Environments & Everything In Between. > Get a Quote or Start a Free Trial Today. > http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel -- Thomas Caswell tca...@gm... |
From: Michael D. <md...@st...> - 2014-01-13 16:37:48
|
It's probably a good time to schedule another matplotlib Google Hangout. Is this Thursday at 1500 UTC (10 am ET) too short notice for the usual candidates? I know there was discussion of getting Michiel de Hoon on today (which I just saw, unfortunately). Is there another time in the future that works for you, Michiel? Mike -- _ |\/|o _|_ _. _ | | \.__ __|__|_|_ _ _ ._ _ | ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | | http://www.droettboom.com |
From: Michael D. <md...@st...> - 2014-01-13 15:12:00
|
This looks quite good to me. I'd like some feedback from Thomas Caswell, who's looked at this part of the code much more than I have lately, but assuming he's ok, you have my go ahead to start the implementation. Cheers, Mike On 01/08/2014 10:55 AM, Federico Ariza wrote: > Hello everybody. > > I just created a new > MEPhttps://github.com/matplotlib/matplotlib/wiki/Mep22 that is open > for discussion and destruction. > > Background: > > In my way to get a MultiFigureManager PR > https://github.com/matplotlib/matplotlib/pull/2465 we came to the > conclusion that the work has to be splitted in smaller PRs. > > One of the goals of my PR was to "Be able to easily modify the toolbar > adding and removing toolitems." This mostly breakes the existing > infrastructure of Toolbar. > > Working on a smaller PR https://github.com/matplotlib/matplotlib/pull/2557 > to address this point, it became clear that a more radical change was > needed to have a clean interface for "User Interaction tools" > > To make it easier to discuss, I created the MEP22 proposing a > separation of powers (insert political joke here). It is open to all > kind of modifications so don't be shy. > > As reference, there are a couple of previous PRs relating to this > https://github.com/matplotlib/matplotlib/pull/1849 and > https://github.com/matplotlib/matplotlib/pull/2557 > Both of these don't address the problem of reconfiguration > > Thank you > Federico > -- _ |\/|o _|_ _. _ | | \.__ __|__|_|_ _ _ ._ _ | ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | | http://www.droettboom.com |
From: Federico A. <ari...@gm...> - 2014-01-10 14:49:51
|
Hello everybody Is anybody going to pycon 2014 in Montreal. Is there a sprint planned for that conference? Thanks Federico -- Y yo que culpa tengo de que ellas se crean todo lo que yo les digo? -- Antonio Alducin -- |
From: Federico A. <ari...@gm...> - 2014-01-08 15:55:46
|
Hello everybody. I just created a new MEPhttps://github.com/matplotlib/matplotlib/wiki/Mep22 that is open for discussion and destruction. Background: In my way to get a MultiFigureManager PR https://github.com/matplotlib/matplotlib/pull/2465 we came to the conclusion that the work has to be splitted in smaller PRs. One of the goals of my PR was to "Be able to easily modify the toolbar adding and removing toolitems." This mostly breakes the existing infrastructure of Toolbar. Working on a smaller PR https://github.com/matplotlib/matplotlib/pull/2557 to address this point, it became clear that a more radical change was needed to have a clean interface for "User Interaction tools" To make it easier to discuss, I created the MEP22 proposing a separation of powers (insert political joke here). It is open to all kind of modifications so don't be shy. As reference, there are a couple of previous PRs relating to this https://github.com/matplotlib/matplotlib/pull/1849 and https://github.com/matplotlib/matplotlib/pull/2557 Both of these don't address the problem of reconfiguration Thank you Federico -- Y yo que culpa tengo de que ellas se crean todo lo que yo les digo? -- Antonio Alducin -- |
From: Pierre H. <pie...@cr...> - 2014-01-08 09:21:20
|
Hi, On the main doc page http://matplotlib.org/contents.html the "Examples" section is misaligned (because it gets surrounded by a blockquote tag). I guess it relates to the special treatment it gets in content.rst (https://raw2.github.com/matplotlib/matplotlib/master/doc/contents.rst). I don't know what magic is required to put it right (I always make alignment errors myself with Sphinx...). Maybe just add or remove one space ? best, Pierre (beyond this alignment issue, I feel like this small Examples link is a bit lost. It may deserve a stronger visual presence) |
From: Michael D. <md...@st...> - 2014-01-06 22:05:06
|
On the calendar, I had marked some time ago to mark a 1.4.0rc1 this Wednesday. Due to an illness that's been making its way around my family, I don't think that's going to happen. However, I think we can start the "triage" of issues that would be nice to fix for 1.4.0. We already have 45 issues tagged as 1.4.x -- it might be helpful to start going through them and see what looks reasonable to resolve, find any that are critical etc. Anything that's a serious regression from 1.3.x should be marked as 1.4.x blocker. We should also look at the 1.3.x issues. I see a lot of activity around this is already underway, I'll hopefully have some time to do some of this this week. Then we'll have a better sense of what needs to get done for a 1.4.0rc1. Happy New Year, Mike -- _ |\/|o _|_ _. _ | | \.__ __|__|_|_ _ _ ._ _ | ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | | http://www.droettboom.com |
From: Michael D. <md...@st...> - 2014-01-06 21:28:06
|
Go ahead and create a new MEP -- announce it here when it's ready for review. Thanks! Mike On 01/06/2014 10:38 AM, Federico Ariza wrote: > Hello everybody > > In discussions with @tacaswell regarding the PR > https://github.com/matplotlib/matplotlib/pull/2624 we talked about the > possibility to make a new MEP for the restructuring of the toolbar, > splitting navigation-toolbar and some more stuff. > > My question is, > Do I just go ahead and create a new MEP based on the template? or > is there a protocol for new MEP creation? > > Thanks and happy new year > Federico > -- _ |\/|o _|_ _. _ | | \.__ __|__|_|_ _ _ ._ _ | ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | | http://www.droettboom.com |
From: Federico A. <ari...@gm...> - 2014-01-06 15:38:52
|
Hello everybody In discussions with @tacaswell regarding the PR https://github.com/matplotlib/matplotlib/pull/2624 we talked about the possibility to make a new MEP for the restructuring of the toolbar, splitting navigation-toolbar and some more stuff. My question is, Do I just go ahead and create a new MEP based on the template? or is there a protocol for new MEP creation? Thanks and happy new year Federico -- Y yo que culpa tengo de que ellas se crean todo lo que yo les digo? -- Antonio Alducin -- |
From: Michael D. <md...@st...> - 2013-12-31 18:21:46
|
Yes. matplotlib can not read the otf format fonts that are generally shipped as part of the STIX font packages. You need the ones that come with matplotlib. Mike On 12/31/2013 11:59 AM, Neal Becker wrote: > If I rely on the system version of matplotlib > > python-matplotlib-1.3.0-1.fc20.x86_64 > > stix fonts are not found > > /usr/lib64/python2.7/site-packages/matplotlib/font_manager.py:1236: UserWarning: > findfont: Font family ['STIXGeneral'] not found. Falling back to Bitstream Vera > Sans > (prop.get_family(), self.defaultFamily[fontext])) > > No I do: > > pip install --user --up matplotlib > > And after rm ~/.matplotlib/fontList.cache stix fonts are found. > > Now I look in ~/.matplotlib/fontList.cache and I find > > /home/nbecker/.local/lib/python2.7/site-packages/matplotlib/mpl- > data/fonts/ttf/STIXGeneralBol.ttf' > > So it seems it now works because the font is now installed. > > But I already had: > > rpm -qa '*stix*' > stix-math-fonts-1.1.0-5.fc20.noarch > texlive-stix-svn29803.1.0-3.fc20.noarch > stix-fonts-1.1.0-5.fc20.noarch > > rpm -ql texlive-stix > /usr/share/texlive/texmf-dist/fonts/opentype/public/stix/STIXGeneral.otf > /usr/share/texlive/texmf-dist/fonts/opentype/public/stix/STIXGeneralBol.otf > > So it seems, matplotlib requires .ttf format fonts? Or perhaps the system > didn't know how to find the fonts from texlive-stix package? > > > ------------------------------------------------------------------------------ > Rapidly troubleshoot problems before they affect your business. Most IT > organizations don't have a clear picture of how application performance > affects their revenue. With AppDynamics, you get 100% visibility into your > Java,.NET, & PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro! > http://pubads.g.doubleclick.net/gampad/clk?id=84349831&iu=/4140/ostg.clktrk > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel -- _ |\/|o _|_ _. _ | | \.__ __|__|_|_ _ _ ._ _ | ||(_| |(_|(/_| |_/|(_)(/_|_ |_|_)(_)(_)| | | http://www.droettboom.com |