December 2016
Beginner to intermediate
392 pages
8h 13m
English
Sparkling Pandas aims to make use of the distributed computing power of PySpark to scale the data analysis with Pandas. This is built on Spark's DataFrame and provides API similar to Pandas. This recipe shows how to use Sparkling Pandas.
To step through this recipe, you will need a running Spark Cluster either in pseudo distributed mode or in one of the distributed modes, that is, standalone, YARN, or Mesos. Also, have Python and IPython installed on the Linux machine, that is, Ubuntu 14.04.
blas, scipy, and sparklingpandas as follows:
apt-get install libblas-dev liblapack-dev libatlas-base-dev
gfortran
pip install scipy
pip install sparklingpandas
import sparklingpandas ...
Read now
Unlock full access