Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Scala's equivalent of pandas in Python or data.frame / data.table in R

Python has pandas and R has data.table as de facto standard libraries for data manipulation.

What is the equivalent for Scala?

like image 242
majom Avatar asked Feb 14 '17 21:02

majom


People also ask

Is dplyr better than Pandas?

Both Pandas and dplyr can connect to virtually any data source, and read from any file format. That's why we won't spend any time exploring connection options but will use a build-in dataset instead. There's no winner in this Pandas vs. dplyr comparison, as both libraries are near identical with the syntax.


1 Answers

Try this library: https://saddle.github.io/ - it's a port of pandas

like image 184
radumanolescu Avatar answered Sep 18 '22 19:09

radumanolescu