SciRuby / daru

Data Analysis in RUby
BSD 2-Clause "Simplified" License
1.04k stars 140 forks source link

:skiprows options for DataFrame.from_csv #220

Closed v0dro closed 7 years ago

v0dro commented 8 years ago

Passing :skiprows as an option and providing a number as a value should skip the number of rows that are specified from the CSV file being read.

For example: Daru::DataFrame.from_csv(path, skiprows: 8) will skip the first 8 rows.