-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
explain how to skip rows between header & data #10910
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Option 1: pass rows explicitly to skiprows | ||
"""""""""""""""""""""""""""""""""""""""""" | ||
|
||
.. code-block:: python |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do this in an ipython block
can you update |
What is missing? |
Option 1: pass rows explicitly to skiprows | ||
"""""""""""""""""""""""""""""""""""""""""" | ||
|
||
pd.read_csv(StringIO(data.decode('UTF-8')), sep=';', skiprows=[11,12], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You need start a new .. ipython:: python
here
@jorisvandenbossche what do you think? |
Seems OK! @dacoex Could you squash the commits? (http://pandas-docs.github.io/pandas-docs-travis/contributing.html#combining-commits) |
This is the result from pandas-dev#10898 corrections ass suggested by the comment on PR changed code block to ipython done like in https://raw.githubusercontent.com/pydata/pandas/master/doc/source/10min.rst updated acc. comment pandas-dev#10910 (comment) pandas-dev#10910 (comment)
@jorisvandenbossche done / see above. |
explain how to skip rows between header & data
Thanks! |
This is the result from
#10898