Object/Trait

smile.plot.vega

VegaLite

Related Docs: trait VegaLite | package vega

Permalink

object VegaLite

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. VegaLite
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. val $schema: String

    Permalink

    The schema of Vega-Lite.

  4. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  5. def apply(url: String, format: JsValue = JsUndefined): View

    Permalink

    Returns a single view specification with data from from URL.

    Returns a single view specification with data from from URL.

    url

    An URL from which to load the data set.

    format

    Type of input data: "json", "csv", "tsv", "dsv". Default value: The default format type is determined by the extension of the file URL. If no extension is detected, "json" will be used by default.

  6. def apply(df: DataFrame): View

    Permalink

    Returns a single view specification with inline data.

  7. def apply(json: JsArray): View

    Permalink

    Returns a single view specification with inline data.

  8. def apply(rows: JsObject*): View

    Permalink

    Returns a single view specification with inline data.

  9. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  10. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. def concat(url: String, format: JsValue, columns: Int, views: VegaLite*): ViewLayoutComposition

    Permalink

    General (wrappable) concatenation.

    General (wrappable) concatenation. Put multiple views into a flexible flow layout.

  12. def concat(df: DataFrame, columns: Int, views: VegaLite*): ViewLayoutComposition

    Permalink

    General (wrappable) concatenation.

    General (wrappable) concatenation. Put multiple views into a flexible flow layout.

  13. def concat(json: JsArray, columns: Int, views: VegaLite*): ViewLayoutComposition

    Permalink

    General (wrappable) concatenation.

    General (wrappable) concatenation. Put multiple views into a flexible flow layout.

  14. def concat(columns: Int, views: VegaLite*): ViewLayoutComposition

    Permalink

    General (wrappable) concatenation.

    General (wrappable) concatenation. Put multiple views into a flexible flow layout.

  15. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  17. def facet(url: String, format: JsValue = JsUndefined): Facet

    Permalink

    Returns a facet specification with data from from URL.

    Returns a facet specification with data from from URL.

    url

    An URL from which to load the data set.

    format

    Type of input data: "json", "csv", "tsv", "dsv". Default value: The default format type is determined by the extension of the file URL. If no extension is detected, "json" will be used by default.

  18. def facet(df: DataFrame): Facet

    Permalink

    Returns a facet specification with inline data.

  19. def facet(json: JsArray): Facet

    Permalink

    Returns a facet specification with inline data.

  20. def facet(rows: JsObject*): Facet

    Permalink

    Returns a facet specification with inline data.

  21. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  22. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  23. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  24. def hconcat(url: String, format: JsValue, views: VegaLite*): ViewLayoutComposition

    Permalink

    Horizontal concatenation.

    Horizontal concatenation. Put multiple views into a column.

  25. def hconcat(df: DataFrame, views: VegaLite*): ViewLayoutComposition

    Permalink

    Horizontal concatenation.

    Horizontal concatenation. Put multiple views into a column.

  26. def hconcat(json: JsArray, views: VegaLite*): ViewLayoutComposition

    Permalink

    Horizontal concatenation.

    Horizontal concatenation. Put multiple views into a column.

  27. def hconcat(views: VegaLite*): ViewLayoutComposition

    Permalink

    Horizontal concatenation.

    Horizontal concatenation. Put multiple views into a column.

  28. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  29. def layer(url: String, format: JsValue, layers: View*): Layer

    Permalink

    Returns a layered view specification.

  30. def layer(df: DataFrame, layers: View*): Layer

    Permalink

    Returns a layered view specification.

  31. def layer(json: JsArray, layers: View*): Layer

    Permalink

    Returns a layered view specification.

  32. def layer(layers: View*): Layer

    Permalink

    Returns a layered view specification.

  33. val mime: String

    Permalink

    The MIME type of Vega-Lite.

  34. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  35. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  36. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  37. def repeat(url: String, format: JsValue, view: VegaLite, row: Seq[String], column: Seq[String]): ViewLayoutComposition

    Permalink

    Creates a view for each entry in an array of fields.

    Creates a view for each entry in an array of fields. This operator generates multiple plots like facet. However, unlike facet it allows full replication of a data set in each view.

    row

    An array of fields to be repeated vertically.

    column

    An array of fields to be repeated horizontally.

  38. def repeat(df: DataFrame, view: VegaLite, row: Seq[String], column: Seq[String]): ViewLayoutComposition

    Permalink

    Creates a view for each entry in an array of fields.

    Creates a view for each entry in an array of fields. This operator generates multiple plots like facet. However, unlike facet it allows full replication of a data set in each view.

    row

    An array of fields to be repeated vertically.

    column

    An array of fields to be repeated horizontally.

  39. def repeat(json: JsArray, view: VegaLite, row: Seq[String], column: Seq[String]): ViewLayoutComposition

    Permalink

    Creates a view for each entry in an array of fields.

    Creates a view for each entry in an array of fields. This operator generates multiple plots like facet. However, unlike facet it allows full replication of a data set in each view.

    row

    An array of fields to be repeated vertically.

    column

    An array of fields to be repeated horizontally.

  40. def repeat(url: String, format: JsValue, view: VegaLite, fields: String*): ViewLayoutComposition

    Permalink

    Creates a view for each entry in an array of fields.

    Creates a view for each entry in an array of fields. This operator generates multiple plots like facet. However, unlike facet it allows full replication of a data set in each view.

    fields

    The fields that should be used for each entry.

  41. def repeat(df: DataFrame, view: VegaLite, fields: String*): ViewLayoutComposition

    Permalink

    Creates a view for each entry in an array of fields.

    Creates a view for each entry in an array of fields. This operator generates multiple plots like facet. However, unlike facet it allows full replication of a data set in each view.

    fields

    The fields that should be used for each entry.

  42. def repeat(json: JsArray, view: VegaLite, fields: String*): ViewLayoutComposition

    Permalink

    Creates a view for each entry in an array of fields.

    Creates a view for each entry in an array of fields. This operator generates multiple plots like facet. However, unlike facet it allows full replication of a data set in each view.

    fields

    The fields that should be used for each entry.

  43. def splom(df: DataFrame, color: String = ""): ViewLayoutComposition

    Permalink

    Scatterplot Matrix (SPLOM).

  44. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  45. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  46. def vconcat(url: String, format: JsValue, views: VegaLite*): ViewLayoutComposition

    Permalink

    Vertical concatenation.

    Vertical concatenation. Put multiple views into a row.

  47. def vconcat(df: DataFrame, views: VegaLite*): ViewLayoutComposition

    Permalink

    Vertical concatenation.

    Vertical concatenation. Put multiple views into a row.

  48. def vconcat(json: JsArray, views: VegaLite*): ViewLayoutComposition

    Permalink

    Vertical concatenation.

    Vertical concatenation. Put multiple views into a row.

  49. def vconcat(views: VegaLite*): ViewLayoutComposition

    Permalink

    Vertical concatenation.

    Vertical concatenation. Put multiple views into a row.

  50. def view(init: JsObject = JsObject()): View

    Permalink

    Returns a single view specification to be used in a composition.

    Returns a single view specification to be used in a composition.

    init

    Initial specification.

  51. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  52. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  53. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped