Which of the following is used as the argument of read_csv method to skip first n lines of an input CSV file? code example
Example 1: pandas read csv skip rows
df = pd.read_csv(data, skiprows = n)
Example 2: pandas read csv skip first line
pandas.read_csv(filepath_or_buffer, skiprows=N, ....)