Contribute Media
A thank you to everyone who makes this possible: Read More

Data Formats for Data Science

Translations: en

Description

The plain text is one of the simplest yet most intuitive format in which data could be stored. It is easy to create, human and machine readable, storage-friendly (i.e. highly compressible), and quite fast to process. Textual data can also be easily structured; in fact to date the CSV (Comma Separated Values) is the most common data format among data scientists. However, this format is not properly suited in case data require any sort of internal hierarchical structure, or if data are too big to fit in a single disk. In these cases, other formats must be considered, according to the shape of data, and the specific constraints imposed by the context. These formats may include general purpose solutions, e.g. [No]SQL databases, HDFS (Hadoop File System); or may be specifically designed for scientific data, e.g. hdf5, ROOT, NetCDF. In this talk, I would like to discuss strength and flaws of each solution w.r.t. their usage for scientific computations in order to provide some practical guidelines for data scientists. The different data formats will be presented in combination with a set of related Python projects, that will be analysed and compared in terms of efficiency and features provided.

Details

Improve this page