現在pandasでcsvファイルを読み込んで、pythonを勉強しようとしていました。
その中で、csvファイルを読み込むとエラーが出てくるので、解決方法が知りたいです。
(エラー内容がわかればそこも理解したいです。)
以下、記述です。
import pandas as pd
df = pd.read_csv('Desktop/html_lesson/Python/MyPandas1/practice1/date(csv).csv', encoding='shift-jis')
以下、エラーです。
FileNotFoundError Traceback (most recent call last)
<ipython-input-7-7ef7c8fb839d> in <module>
----> 1 df = pd.read_csv('Desktop/html_lesson/Python/MyPandas1/practice1/date(csv).csv', encoding='shift-jis')
~\anaconda3\lib\site-packages\pandas\io\parsers.py in parser_f(filepath_or_buffer, sep, delimiter, header, names, index_col, usecols, squeeze, prefix, mangle_dupe_cols, dtype, engine, converters, true_values, false_values, skipinitialspace, skiprows, skipfooter, nrows, na_values, keep_default_na, na_filter, verbose, skip_blank_lines, parse_dates, infer_datetime_format, keep_date_col, date_parser, dayfirst, cache_dates, iterator, chunksize, compression, thousands, decimal, lineterminator, quotechar, quoting, doublequote, escapechar, comment, encoding, dialect, error_bad_lines, warn_bad_lines, delim_whitespace, low_memory, memory_map, float_precision)
674 )
675
--> 676 return _read(filepath_or_buffer, kwds)
677
678 parser_f.name = name
~\anaconda3\lib\site-packages\pandas\io\parsers.py in _read(filepath_or_buffer, kwds)
446
447 # Create the parser.
--> 448 parser = TextFileReader(fp_or_buf, **kwds)
449
450 if chunksize or iterator:
~\anaconda3\lib\site-packages\pandas\io\parsers.py in init(self, f, engine, **kwds)
878 self.options["has_index_names"] = kwds["has_index_names"]
879
--> 880 self._make_engine(self.engine)
881
882 def close(self):
~\anaconda3\lib\site-packages\pandas\io\parsers.py in _make_engine(self, engine)
1112 def _make_engine(self, engine="c"):
1113 if engine == "c":
-> 1114 self._engine = CParserWrapper(self.f, **self.options)
1115 else:
1116 if engine == "python":
~\anaconda3\lib\site-packages\pandas\io\parsers.py in init(self, src, **kwds)
1872 if kwds.get("compression") is None and encoding:
1873 if isinstance(src, str):
-> 1874 src = open(src, "rb")
1875 self.handles.append(src)
1876
FileNotFoundError: [Errno 2] No such file or directory: 'Desktop/html_lesson/Python/MyPandas1/practice1/date(csv).csv'
読み込んでいるデータはdate(csv)というファイルです。
※ややこしくてごめんなさい。
ご教授できる方いましたらよろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー