gicentre/elm-vega

Declarative visualization with Elm and Vega


Keywords
elm, elm-vega, vega, vega-lite, visualization
License
BSD-3-Clause
Install
elm-package install gicentre/elm-vega 2.0.1

Documentation

elm-vega

elm-vega banner

elm version vega version Contributor Covenant

Declarative visualization for Elm.

This package allows you to create Vega specifications in Elm providing a pure functional approach to declarative visualization. It does not generate graphical output directly, but instead allows you to create JSON specifications that can be sent to the Vega runtime to create the output.

Note: If you wish to create Vega-Lite specifications, use the sister-package elm-vegaLite.

Example

Visualizing a set of geospatial centroids as a Voronoi diagram:

let
    ds =
        dataSource
            [ data "centroids"
                [ daUrl (str "https://gicentre.github.io/data/uk/constituencySpacedCentroidsWithSpacers.csv")
                , daFormat [ csv, parseAuto ]
                ]
                |> transform
                    [ trGeoPoint "projection"
                        (field "longitude")
                        (field "latitude")
                    , trVoronoi (field "x")
                        (field "y")
                        [ voSize (numSignals [ "width", "height" ]) ]
                    ]
            ]

    pr =
        projections
            << projection "projection"
                [ prType transverseMercator
                , prScale (num 3700)
                , prTranslate (nums [ 320, 3855 ])
                ]

    sc =
        scales
            << scale "cScale" [ scType scOrdinal, scRange raCategory ]

    mk =
        marks
            << mark path
                [ mFrom [ srData (str "centroids") ]
                , mEncode
                    [ enEnter
                        [ maPath [ vField (field "path") ]
                        , maFill
                            [ ifElse "datum.region == 0"
                                [ transparent ]
                                [ vScale "cScale", vField (field "region") ]
                            ]
                        ]
                    ]
                ]
in
toVega
    [ width 420, height 670, ds, pr [], sc [], mk [] ]

This generates a JSON specification that when sent to the Vega runtime produces the following output:

Voronoi-based map

Why elm-vega?

A rationale for Elm programmers

There is a demand for good visualization packages with Elm, especially ones that incorporate good practice in visualization design. Vega provides a theoretically robust and flexible grammar for specifying visualization design but is based on the JSON format. elm-vega provides a typed functional mapping of Vega, so affording the advantages of the Elm language in building up higher level visualization functions. Because Vega is widely used, you can take advantage of the many thousands of visualizations already shared in the Vega language.

Characteristics of elm-vega.

  • Built upon the widely used Vega specification that has an academic robustness and momentum behind its development.

  • Full access to lower level expressive visualization design.

  • Strict typing and friendly error messages means "the compiler is your friend" when building and debugging complex visualizations.

A rationale for data visualizers

In using JSON to fully encode a visualization specification Vega is portable across a range of platforms and sits well in the JavaScript / Web ecosystem. Yet JSON is really an interchange format rather than one suited directly for visualization design and construction.

By wrapping Vega within the Elm language, we can avoid working with JSON directly and instead take advantage of a typed functional programming environment for improved error support and customisation. This greatly improves reusability of code and integration with larger programming projects.

Elm and elm-vega provide an ideal environment for educators wishing to teach more advanced Data Visualization combining the beginner-friendly design of Elm with the robust and theoretically underpinned design of Vega.

Limitations

  • elm-vega does not render graphics directly, but instead generates data visualization specifications that may be passed to JavaScript for rendering.

Further Reading

Looking for an older version?

If you are using Elm 0.18, you will need to use elm-vega 3.0 and its API documentation. This older version combines modules for working with both Vega and Vega-Lite.