Time series visualisations communicate how something changes over time. In almost all of these charts the x-axis (the horizontal axis) represents time.
Typically, these time series visualisations are used to communicate one of three things:
When working with temporal data it’s extremely important to be careful with the format of your data as the “time” component of your data may contain any combination of the following; HH:MM:SS, YYYY-MM-DD and time zone.
You must use both consistency and sense when working with temporal data. It is highly recommended that you use the ISO 8601 format:
If MS Excel is included in your data processing workflow it is extremely likely that your dates will have been converted into Excel format. Excel dates are an example of a epoch dates.
Epoch date systems count the number of units if time that have elapsed since an epoch (start) date/data-time. MS Excel has a particularly complicated date system. Take the Excel sheet below which contains Christine Lagarde’s (Head of the MFI) date of birth:
This is stored within Excel as 20455.0
, i.e. 20,455 days since the epoch time of January 0, 1900. There’s a good discussion of why 0th January and not 1st January here.
There are many different tools for converting between MS Excel date formats and the ISO 8601 format, but these depend very much on what dataviz technology you are using.