CSV file | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
+ 3

CSV file

Can I use CSV file to do big data analysis?

2nd Jun 2018, 6:15 AM
RainStorm
RainStorm - avatar
3 Respostas
+ 4
It is the most verbose format of tabular data storage you can think of :) It is not a distributable format though, so you can't really do parallelized data computing on it, just like that. So, considering what you mean under "big", you can do... *some* data analysis with .csv ;)
2nd Jun 2018, 8:46 AM
Kuba Siekierzyński
Kuba Siekierzyński - avatar
+ 3
Martin Taylor OK, got me! šŸ˜‚ Indeed, could be worse than csv ;)
2nd Jun 2018, 11:10 AM
Kuba Siekierzyński
Kuba Siekierzyński - avatar
+ 2
CSV is used for data storage. You can use it for data input/output... So read the data in memory (from csv) and analyze them (and/or store your results in csv)...
2nd Jun 2018, 7:05 AM
JiÅ™Ć­ Bočan