[Matplotlib-users] numpy.loadtxt is not finding an existing file. What's up?

2011-05-23 Thread uxv2g
So, I installed EPD python for mac. From the terminal I go into a directory where the file I'd like to read exists. In a python program I create a 2 column data array and below I open it as "f3". The line in bold is that referenced in the error. fwiw I'm just trying to do an easy x,y plot and thi

Re: [Matplotlib-users] numpy.loadtxt is not finding an existing file. What's up?

2011-05-23 Thread Marc Shivers
try: x,y=np.loadtxt(f3,unpack=True) without the str(). On Fri, May 20, 2011 at 11:20 PM, uxv2g wrote: > >  So, I installed EPD python for mac. From the terminal I go into a directory > where the file I'd like to read exists. In a python program I create a 2 > column data array and below I open