|
From: Waléria A. D. <wal...@gm...> - 2010-10-05 17:30:22
|
Benjamin, You were right, the error was being cause because this '^' .. problem solved. Thank you very much On Tue, Oct 5, 2010 at 11:38 AM, Benjamin Root <ben...@ou...> wrote: > On Tue, Oct 5, 2010 at 7:25 AM, Waléria Antunes David < > wal...@gm...> wrote: > >> Benjamin, >> >> I tried this: x, y, yerr = np.loadtxt(r'C:\date1.dat', unpack=True) >> >> but the error continue: http://pastebin.com/UwgKS3s5 >> >> Thanks, >> Waleria. >> >> >> On Mon, Oct 4, 2010 at 4:58 PM, Benjamin Root <ben...@ou...> wrote: >> >>> On Mon, Oct 4, 2010 at 1:57 PM, Waléria Antunes David < >>> wal...@gm...> wrote: >>> >>>> Hi all, >>>> >>>> My problem is this error: http://pastebin.com/bfu29WuF<http://pastebin.com/ZPzdC5c8> >>>> >>>> my code: http://pastebin.com/KzwEmucN >>>> >>>> What could be? >>>> >>>> Thanks >>>> Waleria >>>> >>> > Waleria, > > Good! There is progress. The error indicates that the processing > successfully loaded the data and that it fails when it tries to save the > figure. Specifically, it is failing to produce the LaTeX-like labels you > have made. Looking closer, I see that the carot symbol '^' that you are > using to get a superscript is a unicode carot symbol, not an ASCII one. > This causes the formatting parsing to fail. You need to use the ASCII > symbol ^ to make it work properly. > > I hope that helps. > > Ben Root > > |