-3

this is my code and i tried everything but unable to solve pls help

import matplotlib.pyplot as plt
import pandas as pd
import pylab as pl
import numpy as np
%matplotlib inline
ds=pd.read_csv(r"C:\Users\airline1\sample.csv",engine="python")

output:

---------------------------------------------------------------------------
PermissionError                           Traceback (most recent call last)
<ipython-input-13-386663eb1d85> in <module>
----> 1 ds=pd.read_csv(r"C:\Users\airline1\sample.csv",engine="python")

c:\users\hp\appdata\local\programs\python\python38-32\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

c:\users\hp\appdata\local\programs\python\python38-32\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:

c:\users\hp\appdata\local\programs\python\python38-32\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):

c:\users\hp\appdata\local\programs\python\python38-32\lib\site-packages\pandas\io\parsers.py in _make_engine(self, engine)
   1124                     '"python-fwf")'
   1125                 )
-> 1126             self._engine = klass(self.f, **self.options)
   1127 
   1128     def _failover_to_python(self):

c:\users\hp\appdata\local\programs\python\python38-32\lib\site-packages\pandas\io\parsers.py in __init__(self, f, **kwds)
   2262         self._comment_lines = []
   2263 
-> 2264         f, handles = get_handle(
   2265             f,
   2266             "r",

c:\users\hp\appdata\local\programs\python\python38-32\lib\site-packages\pandas\io\common.py in get_handle(path_or_buf, mode, encoding, compression, memory_map, is_text)
    429         elif is_text:
    430             # No explicit encoding
--> 431             f = open(path_or_buf, mode, errors="replace", newline="")
    432         else:
    433             # Binary mode

PermissionError: [Errno 13] Permission denied: 'C:\\Users\\airline1\\sample.csv'
AKX
  • 152,115
  • 15
  • 115
  • 172
  • So far, you have permission errors. Have you tried closing your csv file open in another program? [This other question](https://stackoverflow.com/q/50083806/4756173) might help you. – Philippe Fanaro Apr 23 '20 at 22:15
  • Does this answer your question? [PermissionError: Permission denied to reading CSV File in Python](https://stackoverflow.com/questions/50083806/permissionerror-permission-denied-to-reading-csv-file-in-python) – Philippe Fanaro Apr 23 '20 at 22:16

1 Answers1

0

You simply don't have permission to read that file (or it may be a directory).

It looks like you're user hp (based on c:\users\hp) and the data file is probably owned by someone called airline1 (based on c:\users\airline1).

You'll have to ask airline1 to grant you permission to read the file.

AKX
  • 152,115
  • 15
  • 115
  • 172