I'm in Machine Learning A-Z lecture 19 where we access our first dataset. I've connected to the Google Colab folder in my gmail account, but when I try to access the the file I get the below error message; any ideas? I've been trying for a couple hours and could use some help:
FileNotFoundError Traceback (most recent call last) <ipython-input-2-8cbde3511752> in <module>() ----> 1 dataset = pd.read_csv('Data.csv') 2 X = dataset.iloc[:, :-1].values 3 y = dataset.iloc[:, -1].values 4 frames /usr/local/lib/python3.7/dist-packages/pandas/io/parsers.py in __init__(self, src, **kwds) 2008 kwds["usecols"] = self.usecols 2009 -> 2010 self._reader = parsers.TextReader(src, **kwds) 2011 self.unnamed_cols = self._reader.unnamed_cols 2012 pandas/_libs/parsers.pyx in pandas._libs.parsers.TextReader.__cinit__() pandas/_libs/parsers.pyx in pandas._libs.parsers.TextReader._setup_parser_source() FileNotFoundError: [Errno 2] No such file or directory: 'Data.csv'
content/drive/...) inpd.read_csv. $\endgroup$