April 2016
Beginner to intermediate
384 pages
8h 36m
English
CSV and TSV formats are essentially text files formatted in a specific way: the former one separates data using a comma and the latter uses tab \t characters. Thanks to this, they are really portable and facilitate the ease of sharing data between various platforms.
To execute this recipe, you will need the pandas module installed. These modules are all available in the Anaconda distribution of Python and no further work is required if you already use this distribution. Otherwise, you will need to install pandas and make sure that it loads properly.
You can download Anaconda from http://docs.continuum.io/anaconda/install. If you already have Python installed but do not have pandas, you ...
Read now
Unlock full access