Flexible and powerful data analysis / manipulation library for Python, providing labeled data structures similar to R data.frame objects, statistical functions, and much more
[X] I have checked that this issue has not already been reported.
[X] I have confirmed this bug exists on the latest version of pandas.
[X] I have confirmed this bug exists on the main branch of pandas.
Reproducible Example
>>> data = """a\nb\nc"""
>>> pd.read_csv(StringIO(data), engine="pyarrow")
a
0 b
1 c
>>> pd.read_csv(StringIO(data), engine="pyarrow", skiprows=1)
a
0 b
1 c
>>>
Issue Description
skiprows seems to be ignored
Expected Behavior
The first row should be skipped, and the returned df should contain same data as default csv engine.
Pandas version checks
[X] I have checked that this issue has not already been reported.
[X] I have confirmed this bug exists on the latest version of pandas.
[X] I have confirmed this bug exists on the main branch of pandas.
Reproducible Example
Issue Description
skiprows seems to be ignored
Expected Behavior
The first row should be skipped, and the returned df should contain same data as default csv engine.
Installed Versions