The more I look at it, the more it seems drawing graphs in javascript+html is the only viable option to get anything decent and useful.
Gnuplot's graphs work, but they're not all that pleasant to look at. Same goes for the graphing tools I've seen in python. Mathematica, I'm told, does a very decent job, but I haven't used that much.
A big advantage for javascript graphing is shareability. Put up a github page, give people a link, voila. Everyone can see up to date graphs, often even interact with them.
The world of javascript graphs
Plenty graphing libraries exist for javascript ranging from extremeley simplistic to magnificently complex.
The most popular are probably d3.js and Raphael, both of which can get extremely complicated to use, but produce arguably the shiniest and most advanced data visualisations you can imagine.
Raphael is mostly a general vector library for the web. Appropriately beautiful as well.
D3.js will make your life somewhat easier in that it's at least aimed specifically at making data visualisations, but there's plenty of rope to hang yourself with.
Flotr2
Those visualisations, while incredibly shiny, are difficult to make. It can take ages, trust me. I've tried and nothing I could come up with came even close. Most of all, using raphael and d3 is usually overkill - sometimes you just want a graph.
To visualize my past year of 750words I used Flotr2 - it took me ten minutes to go from parsed data dumps to shiny graphs. And that was because I had to come up with a javascript function to mangle my data into something Flotr2 will understand.
The best feature is that there isn't enough rope to hang yourself with. Nor does it make you want to over-engineer a simple graph.
Essentially, the code just sets up some data and a label or two:
function draw_time(container, data, title) {var start = new Date(DATA[0].date).getTime(),options,graph,i,x,o;options = {xaxis: {mode: "time",labelsAngle: 45,},selection: {mode: "x",},legend: {position: "se",},HtmlText: false,title: title,};// Draw graph with default options, overwriting with passed optionsfunction drawGraph(opts) {// Clone the options, so the 'options' variable always keeps intact.o = Flotr._.extend(Flotr._.clone(options), opts || {});// Return a new graph.return Flotr.draw(container, data, options);}graph = drawGraph();Flotr.EventAdapter.observe(container, "flotr:select", function (area) {// Draw selected areagraph = drawGraph({xaxis: { min: area.x1, max: area.x2, mode: "time", labelsAngle: 45 },yaxis: { min: area.y1, max: area.y2 },});});// When graph is clicked, draw the graph with default area.Flotr.EventAdapter.observe(container, "flotr:click", function () {graph = drawGraph();});}
And what you get is a graph:
Love it.
Looks good. Serves its purpose. Simple to make.
Related articles
Learned something new?
Want to become a high value JavaScript expert?
Here's how it works π
Leave your email and I'll send you an Interactive Modern JavaScript Cheatsheet πright away. After that you'll get thoughtfully written emails every week about React, JavaScript, and your career. Lessons learned over my 20 years in the industry working with companies ranging from tiny startups to Fortune5 behemoths.
Start with an interactive cheatsheet π
Then get thoughtful letters π on mindsets, tactics, and technical skills for your career.
"Man, love your simple writing! Yours is the only email I open from marketers and only blog that I give a fuck to read & scroll till the end. And wow always take away lessons with me. Inspiring! And very relatable. π"
Have a burning question that you think I can answer?Β I don't have all of the answers, but I have some! Hit me up on twitter or book a 30min ama for in-depth help.
Ready to Stop copy pasting D3 examples and create data visualizations of your own? Β Learn how to build scalable dataviz components your whole team can understand with React for Data Visualization
Curious about Serverless and the modern backend? Check out Serverless Handbook, modern backend for the frontend engineer.
Ready to learn how it all fits together and build a modern webapp from scratch? Learn how to launch a webapp and make your first π° on the side with ServerlessReact.Dev
Want to brush up on your modern JavaScript syntax?Β Check out my interactive cheatsheet: es6cheatsheet.com
By the way, just in case no one has told you it yet today: I love and appreciate you for who you areΒ β€οΈ