Help language development. Donate to The Perl Foundation
This repository has the a 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]. The commands of the package generate JavaScript code that produces (nice) D3.js plots or charts.
For illustrative examples see the Jupyter notebook "Tests-for-JavaScript-D3".
The (original versions of the) JavaScript snippets used in this package are 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".
Make first class -- beautiful, tunable, and useful -- plots and charts with Raku using concise specifications.
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".)
ListPlot
,
BubbleChart
.The primary target data structure to visualize is an array of hashes, with all array elements having the 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:
Here is a diagram that summarizes the evaluation path from a Raku plot spec to a browser diagram:
graph TD Raku{{Raku}} IRaku{{"Raku<br>Jupyter kernel"}} Jupyter{{Jupyter}} JS{{JavaScript}} RakuInput[/Raku code input/] JSOutput[/JavaScript code output/] CellEval[Cell evaluation] JSResDisplay[JavaScript code result display] Jupyter -.-> |1|IRaku -.-> |2|Raku -.-> |3|JSOutput -.-> |4|Jupyter Jupyter -.-> |5|JS -.-> |6|JSResDisplay RakuInput ---> CellEval ---> Jupyter ---> JSResDisplay
Here is the corresponding narration:
Enter Raku plot command in cell that starts with
the magic spec %% js
.
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.
The evaluation loop spelled out above is possible because of the magics implementation in the Raku package Jupyter::Kernel, [BD1].
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.)
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.
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. (-1 for Whatever.) [default: 800] # -h|--height[=UInt] Height of the plot. (-1 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
#
In the lists below the highest priority items are placed first.
User specified or automatic:
[X] DONE Support for different JavaScript wrapper styles
[X] DONE Jupyter cell execution ready
[X] DONE Standard HTML
Result output with JSON format?
[ ] TODO Better, comprehensive type checking
[X] DONE CLI script
[X] TODO JavaScript code snippets management
[X] Random Mandala, single plot
[X] Random mandalas row
[ ] Random mandalas table/array
[X] Random Scribble, single plot
[X] Random Scribbles row
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.)
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.
I finishing 0.1.3 version of this package I decided to write its Python version of it, see [AAp3]. Writing the Python version was good brainstorming technique to produce reasonable refactoring (that is version 0.1.4).
[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.
[AAp1] Anton Antonov, Data::Reshapers Raku package, (2021-2022), GitHub/antononcube.
[AAp2] Anton Antonov, Text::Plot Raku package, (2022), GitHub/antononcube.
[AAp3] Anton Antonov, JavaScriptD3 Python package, (2022), Python-packages at GitHub/antononcube.
[BD1] Brian Duggan, Jupyter::Kernel Raku package, (2017-2022), GitHub/bduggan.
[MLp1] Moritz Lenz, SVG::Plot Raku package (2009-2018), GitHub/moritz.