package spark
This object has convenience methods specifically for working with Spark. If you are plotting from a Spark application, you should import the contents of this object.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- spark
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- implicit class ColumnToDoubleSeries extends PlotDoubleSeries
- implicit class ColumnToIntSeries extends PlotIntSeries
- implicit class ColumnToStringSeries extends PlotStringSeries
- implicit class SymbolToDoubleSeries extends PlotDoubleSeries
- implicit class SymbolToIntSeries extends PlotIntSeries
- implicit class SymbolToStringSeries extends PlotStringSeries
Value Members
- def doubles[A](rdd: RDD[A])(f: (A) ⇒ Double): PlotDoubleSeries
- def doubles[A](ds: Dataset[A])(f: (A) ⇒ Double): PlotDoubleSeries
- def doubles(ds: Dataset[_], col: Column): PlotDoubleSeries
- def ints[A](rdd: RDD[A])(f: (A) ⇒ Int): PlotIntSeries
- def ints[A](ds: Dataset[A])(f: (A) ⇒ Int): PlotIntSeries
- def ints(ds: Dataset[_], col: Column): PlotIntSeries
- def strings[A](rdd: RDD[A])(f: (A) ⇒ String): PlotStringSeries
- def strings[A](ds: Dataset[A])(f: (A) ⇒ String): PlotStringSeries
- def strings(ds: Dataset[_], col: Column): PlotStringSeries
- object SparkPlot