[Matplotlib-users] bug in mpl_toolkits.axes_grid1.AxesGrid?

2011-05-24 Thread Paul Anton Letnes
Hi! I am wondering if there is a bug in: mpl_toolkits.axes_grid1.AxesGrid I am trying to run this example (I am of course working on something else, but I am trying to build a minimal example of my problem): http://matplotlib.sourceforge.net/examples/axes_grid/demo_axes_grid.html This would be a

[Matplotlib-users] Not able to access CSV file:

2011-05-24 Thread Karthikraja Velmurugan
Hello friends, I am a newbee to matplotlib and I am trying to plot (scatter plot) some values. The data is quite big and I have them in a CSV file. For a starter I thought I will use loadrec.py example to see if I am able to import the data from the CSV file. The loadrec.py goes like this:

[Matplotlib-users] Clip on subplot border mandatory?

2011-05-24 Thread Mondsuechtiger
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello, I would like to stack subplots in a figure with a couple of basic x,y-line plots with the subplot frames removed. But possible overlap of subplots is limited, because the drawn data lines are clipped on the border, if you'd lets say manually r

Re: [Matplotlib-users] mathbb and eps export

2011-05-24 Thread Michael Droettboom
You probably have "ps.useafm" set, right? Unfortunately, the stock Postscript AFM fonts do not have a blackboard style. Setting ps.useafm to False will use Truetype fonts, and it should work. Cheers, Mike On 05/24/2011 10:50 AM, Oscar Benjamin wrote: Hello, I'm getting an error using latex

[Matplotlib-users] mathbb and eps export

2011-05-24 Thread Oscar Benjamin
Hello, I'm getting an error using latex mathbb and exporting to eps. The following script demonstrates: from pylab import figure, show fig = figure() ax = fig.add_subplot(1, 1, 1) ax.set_title(r'$\mathbb{R}$') fig.savefig('mathbb.eps') On Windows the above gives me a long traceback ending with:

Re: [Matplotlib-users] Clearing plot but axes

2011-05-24 Thread Friedrich Romstedt
2011/5/24 Marco Trapanese : > I draw something with the plot command. > Now I want to "update" the entire plot, saving the current axes settings. I think you might use this one: http://github.com/friedrichromstedt/matplotlayers/ Friedrich

[Matplotlib-users] Clearing plot but axes

2011-05-24 Thread Marco Trapanese
Hello, I draw something with the plot command. Now I want to "update" the entire plot, saving the current axes settings. That is I'd like to clear and plot again. I tried clf, cla, hold=false but I need to setup again my (multiple) axes. Because I need to go quite fast I'm looking for a more ele