---------------------------------------------------------------------------
OSError Traceback (most recent call last)
<ipython-input-3-4597de9045f4> in <module>()
----> 1 afmdata = np.genfromtxt('../Data/UnbackgroundedTXT/500nmGood-0')
2 afmdata= afmdata*(10**9)
3 height, width = afmdata.shape
/Users/wesleytatum/miniconda3/lib/python3.5/site-packages/numpy/lib/npyio.py in genfromtxt(fname, dtype, comments, delimiter, skip_header, skip_footer, converters, missing_values, filling_values, usecols, names, excludelist, deletechars, replace_space, autostrip, case_sensitive, defaultfmt, unpack, usemask, loose, invalid_raise, max_rows)
1510 fhd = iter(np.lib._datasource.open(fname, 'rbU'))
1511 else:
-> 1512 fhd = iter(np.lib._datasource.open(fname, 'rb'))
1513 own_fhd = True
1514 else:
/Users/wesleytatum/miniconda3/lib/python3.5/site-packages/numpy/lib/_datasource.py in open(path, mode, destpath)
149
150 ds = DataSource(destpath)
--> 151 return ds.open(path, mode)
152
153
/Users/wesleytatum/miniconda3/lib/python3.5/site-packages/numpy/lib/_datasource.py in open(self, path, mode)
499 return _file_openers[ext](found, mode=mode)
500 else:
--> 501 raise IOError("%s not found." % path)
502
503
OSError: ../Data/UnbackgroundedTXT/500nmGood-0 not found.