---------------------------------------------------------------------------
FileNotFoundError Traceback (most recent call last)
<ipython-input-4-9386e35b47ec> in <module>()
1 focusFile = '/Users/cflannery/Documents/github/UCSD-MAE170/jupyter/Lab2/Focus2.xlsx'
----> 2 df = pd.read_excel(focusFile,header=0)
3 cols = df.columns
4
5 df[cols[0]] = df[cols[0]] *10**6
/Users/cflannery/anaconda/lib/python3.6/site-packages/pandas/io/excel.py in read_excel(io, sheetname, header, skiprows, skip_footer, index_col, names, parse_cols, parse_dates, date_parser, na_values, thousands, convert_float, has_index_names, converters, true_values, false_values, engine, squeeze, **kwds)
189
190 if not isinstance(io, ExcelFile):
--> 191 io = ExcelFile(io, engine=engine)
192
193 return io._parse_excel(
/Users/cflannery/anaconda/lib/python3.6/site-packages/pandas/io/excel.py in __init__(self, io, **kwds)
247 self.book = xlrd.open_workbook(file_contents=data)
248 elif isinstance(io, compat.string_types):
--> 249 self.book = xlrd.open_workbook(io)
250 else:
251 raise ValueError('Must explicitly set engine if not passing in'
/Users/cflannery/anaconda/lib/python3.6/site-packages/xlrd/__init__.py in open_workbook(filename, logfile, verbosity, use_mmap, file_contents, encoding_override, formatting_info, on_demand, ragged_rows)
393 peek = file_contents[:peeksz]
394 else:
--> 395 with open(filename, "rb") as f:
396 peek = f.read(peeksz)
397 if peek == b"PK\x03\x04": # a ZIP file
FileNotFoundError: [Errno 2] No such file or directory: '/Users/cflannery/Documents/github/UCSD-MAE170/jupyter/Lab2/Focus2.xlsx'