December 2016
Beginner to intermediate
392 pages
8h 13m
English
In this second recipe on plotting using Bokeh, we'll see how to plot a time series graph with a dataset borrowed from https://archive.ics.uci.edu/ml/datasets/Dow+Jones+Index. We will also see how to plot multiple charts in a single document.
To step through this recipe, you will need a running Spark Cluster in any one of the modes, that is, local, standalone, YARN, or Mesos. Also, include the Spark MLlib package in the build.sbt file so that it downloads the related libraries and the API can be used. Install Hadoop (optionally), Scala, and Java.
Initially, specify the following libraries in the build.sbt file as follows:
libraryDependencies ++= Seq( "io.continuum.bokeh" ...
Read now
Unlock full access