JavaScript::D3
JavaScript::D3 Raku package
This repository has the Raku package for generation of JavaScript's D3 code for making plots and charts.
This package is intended to be used in Jupyter notebooks with the Raku kernel implemented by Brian Duggan, [BD1], or "Jupyter::Chatbook", [AAp4]. The commands of the package generate JavaScript code that produces (nice) D3.js plots or charts. See the video [AAv1].
The package JavaScript graphs can be also included in HTML and Markdown documents. See the videos [AAv2, AAv3].
For illustrative examples see the Jupyter notebook "Tests-for-JavaScript-D3".
The (original versions of the) JavaScript snippets used in this package are (mostly) taken from "The D3.js Graph Gallery".
Here is a corresponding video demo (ā7 min): "The Raku-ju hijack hack of D3.js" (ā 7 min.)
And here is the demo notebook: "The-Raku-ju-hijack-hack-for-D3.js-demo".
Mission statement
Make first class -- beautiful, tunable, and useful -- plots and charts with Raku using concise specifications.
Design and philosophy
Here is a list of guiding design principles:
Concise plot and charts specifications.
Using Mathematica's plot functions for commands signatures inspiration. (Instead of, say, R's "ggplot2".)
For example, see ListPlot, BubbleChart.
The primary target data structure to visualize is an array of hashes, with all array elements having one of these sets of keys
<x y><x y group><x y z><x y z group>
Multiple-dataset plots are produced via dataset records that have the key "group".
Whenever possible deduce the keys from arrays of scalars.
The data reshaping functions in "Data::Reshapers", [AAp1], should fit nicely into workflows with this package.
The package functions are tested separately:
As Raku functions that produce output for given signatures
As JavaScript plots that correspond to the corresponding intents
How does it work?
Here is a diagram that summarizes the evaluation path from a Raku plot spec to a browser diagram:
Here is the corresponding narration:
Enter Raku plot command in cell that starts with the magic spec %% js.
Like
js-d3-list-plot((^12)>>.rand).
Jupyter via the Raku kernel evaluates the Raku plot command.
The Raku plot command produces JavaScript code.
The Jupyter "lets" the web browser to evaluate the obtained JavaScript code.
Instead of web browser, say, Visual Studio Code can be used.
The evaluation loop spelled out above is possible because of the magics implementation in the Raku package Jupyter::Kernel, [BD1].
Alternatives
Raku packages
The Raku packages "Text::Plot", [AAp2], and "SVG::Plot", [MLp1], provide similar functionalities and both can be used in Jupyter notebooks. (Well, "Text::Plot" can be used anywhere.)
Different backend
Instead of using D3.js as a "backend" it is possible -- and instructive -- to implement Raku plotting functions that generate JavaScript code for the library Chart.js.
D3.js is lower level than Chart.js, hence in principle Chart.js is closer to the mission of this Raku package. I.e. at first I considered having Raku plotting implementations with Chart.js (in a package called "JavaScript::Chart".) But I had hard time making Chart.js plots work consistently within Jupyter.
Command Line Interface (CLI)
The package provides a CLI script that can be used to generate HTML files with plots or charts.
js-d3-graphics --help# Usage:
# js-d3-graphics <cmd> [<points> ...] [-w|--width[=UInt]] [-h|--height[=UInt]] [-t|--title=<Str>] [--x-label=<Str>] [--y-label=<Str>] [--background=<Str>] [--color=<Str>] [--grid-lines] [--margins[=UInt]] [--format=<Str>] -- Generates HTML document code with D3.js plots or charts.
# js-d3-graphics <cmd> <words> [-w|--width[=UInt]] [-h|--height[=UInt]] [-t|--title=<Str>] [--x-label=<Str>] [--y-label=<Str>] [--background=<Str>] [--color=<Str>] [--grid-lines] [--format=<Str>] -- Generates HTML document code with D3.js plots or charts by splitting a string of data points.
# js-d3-graphics <cmd> [-w|--width[=UInt]] [-h|--height[=UInt]] [-t|--title=<Str>] [--x-label=<Str>] [--y-label=<Str>] [--background=<Str>] [--color=<Str>] [--grid-lines] [--format=<Str>] -- Generates HTML document code with D3.js plots or charts from pipeline input.
#
# <cmd> Graphics command.
# [<points> ...] Data points.
# -w|--width[=UInt] Width of the plot. (0 for Whatever.) [default: 800]
# -h|--height[=UInt] Height of the plot. (0 for Whatever.) [default: 600]
# -t|--title=<Str> Title of the plot. [default: '']
# --x-label=<Str> Label of the X-axis. If Whatever, then no label is placed. [default: '']
# --y-label=<Str> Label of the Y-axis. If Whatever, then no label is placed. [default: '']
# --background=<Str> Image background color [default: 'white']
# --color=<Str> Color. [default: 'steelblue']
# --grid-lines Should grid lines be drawn or not? [default: False]
# --margins[=UInt] Size of the top, bottom, left, and right margins. [default: 40]
# --format=<Str> Output format, one of 'jupyter' or 'html'. [default: 'html']
# <words> String with data points.Here is an usage example that produces a list line plot:
js-d3-graphics list-line-plot 1 2 2 12 33 41 15 5 -t="Nice plot" --x-label="My X" --y-label="My Y" > out.html && open out.html# Here is an example that produces bubble chart:
js-d3-graphics bubble-chart "1,1,10 2,2,12 33,41,15 5,3,30" -t="Nice plot" --x-label="My X" --y-label="My Y" > out.html && open out.html# Here is an example that produces a random mandala:
js-d3-graphics random-mandala 1 --margins=100 -h=1000 -w=1000 --color='rgb(120,120,120)' --background='white' -t="Random mandala" > out.html && open out.html# Here is an example that produces three random scribbles:
js-d3-graphics random-scribble 3 --margins=10 -h=200 -w=200 --color='blue' --background='white' > out.html && open out.html# TODO
In the lists below the highest priority items are placed first.
Plots
Single dataset
DONE List plot
DONE List line plot
DONE Date list plot
DONE Box plot
Multiple datasets
DONE List plot
DONE List line plot
DONE Date list plot
TODO Box plot
Graph plots
TODO Graph plot using d3-force
DONE Core graph plot
DONE Directed graphs
DONE Vertex label styling
DONE Edge label styling
DONE Highlight vertices and edges
Multiple groups can be specified.
TODO Vertex shape styling
TODO Edge shape styling
TODO Curved edges
TODO Graph plot using vertex coordinates
DONE Core graph plot
DONE Directed graphs
DONE Vertex label styling
DONE Edge label styling
TODO Vertex shape styling
TODO Edge shape styling
TODO Curved edges
Charts
Single dataset
DONE Bar chart
DONE Vertical
DONE Horizontal
DONE Chart label per bar
DONE Histogram
DONE Bubble chart
TODO Density 2D chart -- rectangular bins
TODO Radar chart
TODO Density 2D chart -- hexagonal bins
TODO Pie chart
DONE Heatmap plot
DONE Chessboard position
Multiple datasets
TODO Bar chart
TODO Histogram
DONE Bubble chart
DONE Bubble chart with tooltips
TODO Pie chart
TODO Radar chart
Decorations
User specified or automatic:
DONE Plot label / title
DONE Axes labels
DONE Plot margins
DONE Plot legends (automatic for multi-datasets plots and chart)
DONE Plot grid lines
DONE Automatic
DONE User specified number of ticks
DONE Title style (font size, color, face)
DONE Axes labels style (font size, color, face)
TODO Grid lines style
Infrastructural
DONE Support for different JavaScript wrapper styles
DONE Jupyter cell execution ready
DONE Standard HTML
Result output with JSON format?
TODO Better, comprehensive type checking
Using the type system of "Data::TypeSystem".
DONE CLI script
DONE JavaScript code snippets management
Initially the JavaScript snippets were kept with the Raku code, but it seems it is better to have them in a separate file. (With the corresponding accessors.)
Second wave
Random Mandala, single plot
Random mandalas row
Random mandalas table/array
(I am not sure I will do this.)
Random Scribble, single plot
Random Scribbles row
3D list plot and 3D list line plot
Implementation details
Splicing of JavaScript snippets
The package works by splicing of parametrized JavaScript code snippets and replacing the parameters with concrete values.
In a sense, JavaScript macros are used to construct the final code through text manipulation. (Probably, unsound software-engineering-wise, but it works.)
History
Initially the commands of this package were executed in Jupyter notebook with Raku kernel properly hacked to redirect Raku code to JavaScript backend
Brian Duggan fairly quickly implemented the suggested Jupyter kernel magics, so, now no hacking is needed.
After I finished version 0.1.3 of this package I decided to write a Python version of it, see [AAp3]. Writing the Python version was a good brainstorming technique to produce reasonable refactoring (that is version 0.1.4).
References
Articles
[OV1] Olivia Vane, "D3 JavaScript visualisation in a Python Jupyter notebook", (2020), livingwithmachines.ac.uk.
[SF1] Stefaan Lippens, Custom D3.js Visualization in a Jupyter Notebook, (2018), stefaanlippens.net.
Packages
[AAp1] Anton Antonov, Data::Reshapers Raku package, (2021-2024), GitHub/antononcube.
[AAp2] Anton Antonov, Text::Plot Raku package, (2022), GitHub/antononcube.
[AAp3] Anton Antonov, Data::TypeSystem Raku package, (2023-2024), GitHub/antononcube.
[AAp3] Anton Antonov, JavaScriptD3 Python package, (2022), Python-packages at GitHub/antononcube.
[AAp4] Anton Antonov, Jupyter::Chatbook Raku package, (2023-2024), GitHub/antononcube.
[BD1] Brian Duggan, Jupyter::Kernel Raku package, (2017-2022), GitHub/bduggan.
[MLp1] Moritz Lenz, SVG::Plot Raku package (2009-2018), GitHub/moritz.
Videos
[AAv1] Anton Antonov, "The Raku-ju hijack hack for D3.js", (2022), YouTube/@AAA4Prediction.
[AAv2] Anton Antonov, "Random mandalas generation (with D3.js via Raku)", (2022), YouTube/@AAA4Prediction.
[AAv3] Anton Antonov, "Raku Literate Programming via command line pipelines", (2023), YouTube/@AAA4Prediction.