Answers for "pandas how to start read csv at a certain row"

0

pandas how to start read csv at a certain row

import pandas as pd
# Select file 
infile = r'path/file'
# Use skiprows to choose starting point and nrows to choose number of rows
data = pd.read_csv(infile, skiprows = 50, nrows=10)
Posted by: Guest on July-27-2021

Code answers related to "pandas how to start read csv at a certain row"

Python Answers by Framework

Browse Popular Code Answers by Language