Re: [Matplotlib-users] How to visualize a, b results of x, y variables

2015-07-08 Thread Sterling Smith
In the x,y plane, could you overlay contours of a with contours of b? -Sterling On Jul 8, 2015, at 8:19PM, Jonno wrote: > I have a bunch of experimental data points each of which has 2 variables > (x,y) and 2 results (a,b). Each pair or x,y values produces a pair of a,b > resultant values. > T

[Matplotlib-users] How to visualize a,b results of x,y variables

2015-07-08 Thread Jonno
I have a bunch of experimental data points each of which has 2 variables (x,y) and 2 results (a,b). Each pair or x,y values produces a pair of a,b resultant values. There is a single optimal pair of a,b values and I'd like to figure out a way to illustrate the data to show the relationship between

[Matplotlib-users] score_family in font_manager

2015-07-08 Thread Chad Wagner
Hi, I'm trying to use a custom font that is set dynamically at runtime, if available. (I don't want this font to be the default in the config file.) But matplotlib keeps defaulting to the generic sans-serif font if I include that as an option later in the font family list. In the process of tr

Re: [Matplotlib-users] Plot : Too many ticks on X axe

2015-07-08 Thread Benjamin Root
Your code example is incomplete. Even if I add in the typical imports and "fig, ax = plt.subplots()" and "plt.show()", The x tick labels aren't rotated, and I certainly don't have too many tick labels. Could you provide a complete working example that demonstrate the problem? Ben Root On Wed, Jul

Re: [Matplotlib-users] Plot : Too many ticks on X axe

2015-07-08 Thread manik971
date_range = (735599.0, 735745.0) x = (735610.5, 735647.0, 735647.5, 735648.5, 735669.0, 735699.0, 735701.5, 735702.5, 735709.5, 735725.5, 735728.5, 735735.5, 735736.0) y = (227891.25361545716, 205090.4880046467, 208352.59317388065, 175462.99296699322, 98209.836461969651, 275063.37219361769, 21945

[Matplotlib-users] Plot : Too many ticks on X axe

2015-07-08 Thread manik971
Hello, The first loaded plot have too many ticks on X axe (see image01). If I use the zoom action on X axe, the plot is now well loaded. Can you give me some advi