Comma Separated Files
This lesson focuses on CSV type files. It gives a complete explanation about how to read data from CSV files using the Pandas library of Python.
Introduction to CSV file #
Comma-separated files (CSV) are common in machine learning. These files have a row of data per line of the file and each line is a comma-separated list in which each element is a column. Pandas makes it easy to read this data.
Reading CSV file with Pandas #
The documentation can be found ...