Tag: data visualisation

ASCII Bar Charts for Quick & Easy Visualisation

So you have some data. Let's say it's a record of the number of instances of some things. Let's say it's the number of movies you own, grouped by the year they were released. Let's say you have those data in the form of a dictionary in Python, like so: years = {2000: 2, 2001: 9, 2002: 10, 2003:...

16,777,216 Colours

This post is one of a series of articles adapted from my university dissertation on data visualisation — see the rest of the series. Digitally, colour can be defined by a set of values defining the level of Red, Green and Blue in each pixel. The number of values between "empty" and "full" denotes...

Tag Cloud

This post is one of a series of articles adapted from my university dissertation on data visualisation — see the rest of the series. Tag clouds are a great way of dynamically visualising the author-defined keyword content of a blog or news feed. I created a system which would store tags linked to...