Popularity
3.4
Growing
Activity
0.0
Stable
1
4
1

Monthly Downloads: 11
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License

rigel-viz alternatives and similar packages

Based on the "Scientific" category.
Alternatively, view rigel-viz alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of rigel-viz or a related project?

Add another 'Scientific' Package

README

rigel-viz

Build Status

Rigel (also called Beta Orionis) is the seventh-brightest star in the night sky

A (mid-level, simplified, opinionated) Haskell wrapper for vega-lite, currently targeting version 3 of the vega-lite schema.

Aims / definitions

  • mid-level :

    • types which can take one of a few possible values are represented by sum types, not by strings.
    • glyph colours are encoded via the colour Haskell library.
  • simplified : the generated vega-lite JSON is not normalized, i.e. has some redundancies. This reflects the internal representation but also makes it easier to reason "locally" (i.e. code sections don't visibly exploit inheritance from higher layers).

  • opinionated : part of the vega-lite API is not used at all. For example, there is no support for data preprocessing (e.g. summarization etc.). This forces the user to use the host language for preprocessing, which is bound to be more expressive and robust.