read_csv() - "skiprows" should ignore "comment"
See original GitHub issueCode Sample, a copy-pastable example if possible
pandas.read_csv(URL, delimiter='|', comment='#', skiprows=4)
Problem description
ParserError
when reading CSV files with comments at the beginning of the file. Line count of comments varies.
EDIT: ParseError
is due to the fact that the column count of the first 4 rows is different from the column count of the succeeding rows
Objective:
- Ignore comments
- Ignore the first 4 lines that are not comments
This happens when reading a CSV file similar to the following
# Comment start
# ..... Comment count varies
# Comment end
first|line
second|line
third|line
fourth|line
first|data|to|read
second|data|to|read
Expected Output
The comment lines should not be included on the skiprows
Output of pd.show_versions()
[paste the output of ``pd.show_versions()`` here below this line]
commit: None
python: 3.6.6.final.0
python-bits: 32
OS: Windows
OS-release: 10
machine: AMD64
processor: Intel64 Family 6 Model 142 Stepping 9, GenuineIntel
byteorder: little
LC_ALL: None
LANG: None
LOCALE: None.None
pandas: 0.23.4
pytest: None
pip: 18.1
setuptools: 40.4.3
Cython: None
numpy: 1.15.2
scipy: None
pyarrow: None
xarray: None
IPython: None
sphinx: None
patsy: None
dateutil: 2.7.3
pytz: 2018.5
blosc: None
bottleneck: None
tables: None
numexpr: None
feather: None
matplotlib: None
openpyxl: None
xlrd: None
xlwt: None
xlsxwriter: None
lxml: None
bs4: None
html5lib: None
sqlalchemy: None
pymysql: None
psycopg2: None
jinja2: None
s3fs: None
fastparquet: None
pandas_gbq: None
pandas_datareader: None
Issue Analytics
- State:
- Created 5 years ago
- Reactions:2
- Comments:11 (5 by maintainers)
Top Results From Across the Web
pandas.read_csv: how to skip comment lines - Stack Overflow
One workaround is to specify skiprows to ignore the first few entries: ... Otherwise with pd.read_csv(filename, comment='#') I get. pandas.parser.
Read more >How to skip rows while reading csv file using Pandas?
Here, we will discuss how to skip rows while reading csv file. We will use read_csv() method of Pandas library for this task....
Read more >Pandas: How to Skip Rows when Reading CSV File - Statology
You can use the following methods to skip rows when reading a CSV file into a pandas DataFrame: Method 1: Skip One Specific...
Read more >pandas.read_csv — pandas 1.5.2 documentation
This parameter must be a single character. Like empty lines (as long as skip_blank_lines=True ), fully commented lines are ignored by the parameter...
Read more >Pandas : skip rows while reading csv file to a Dataframe using ...
While calling pandas.read_csv() if we pass skiprows argument as a list of ints, then it will skip the rows from csv at specified...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Just an FYI this is documented behavior:
Definitely a corner case here but I don’t have anything against the feature, given we already account for it with the
header
parameter. Investigation and PRs welcomeIf the data is clean, then you could always do
df = pd.read_csv(URL, comment='#')[n:]
to skip the first n rows. That doesn’t necessarily work in this case due to the rows having an uneven number of elements, but that’s a whole other issue.