2019-01-20 23:15:10 +08:00
# Example (JKQTPlotter): Date/Time Axes {#JKQTPlotterDateTimeAxes}
2018-12-29 00:46:47 +08:00
2019-05-18 02:46:52 +08:00
[TOC]
# Date Axis
2019-06-21 04:24:47 +08:00
This project (see `./examples/dateaxes/` ) simply creates a JKQTPlotter widget (as a new window) with the X-axis showing time or date(-time) values, formated as such.
2018-12-29 00:46:47 +08:00
2019-06-21 04:24:47 +08:00
The source code of the main application can be found in [`dateaxes.cpp` ](https://github.com/jkriege2/JKQtPlotter/tree/master/examples/dateaxes/dateaxes.cpp ).
2018-12-29 00:46:47 +08:00
First some data is parsed from a CSV-file (added as ressource to the example). Note that the Time/date or Date+Time data is internally stored as milliseconds since epoc (Jan 1st 1970, 00:00:00), therefore data has to be converted accordingly before beeing added to the graph.
2019-01-19 16:40:52 +08:00
```.cpp
2018-12-29 00:46:47 +08:00
QVector< double > date;
QVector< double > temperature, temperature_min, temperature_max;
// parse a textfile with comments on the first line and the
// semicolon separated data. The first column is a date and time
// the second to fourth columns contain a floating-point number
// with temperature average, min and max
QFile file(":/weatherdata_gelsenkirchen.csv");
file.open(QFile::ReadOnly|QFile::Text);
file.readLine(); // eat comment
while (!file.atEnd()) {
QString line=file.readLine();
QTextStream in(&line);
QStringList items=line.split(";");
// date/time values are stored as doubles representing the corresponding number of milliseconds sind epoch
date< < QDateTime::fromString ( items [ 0 ] , Qt::ISODate ) . toUTC ( ) . toMSecsSinceEpoch ( ) ;
// store Heidelbergs daily temperature
temperature< < items [ 1 ] . toDouble ( ) ;
temperature_min< < items [ 2 ] . toDouble ( ) ;
temperature_max< < items [ 3 ] . toDouble ( ) ;
}
```
2019-01-12 20:43:12 +08:00
The parsed data looks like this (data was taken from http://wetter.mpg-ge.de/NOAA/NOAA-2018.txt and http://wetter.mpg-ge.de/NOAA/NOAA-2017.txt):
2018-12-29 00:46:47 +08:00
```
2019-01-12 20:43:12 +08:00
ISO-Date+Time;Temp_mean[degC];Temp_min[degC];Temp_max[degC]
2018-12-29 00:46:47 +08:00
2017-01-15T12:00; 1.2; -1.2; 3.7
2017-02-15T12:00; 5.6; 3.2; 8.1
2017-03-15T12:00; 9.6; 6.2; 13.5
...
```
2019-01-20 17:49:29 +08:00
Then two graphs are added. One of type `JKQTPFilledVerticalRangeGraph` plots the range of min+max temperature for each month:
2019-01-19 16:40:52 +08:00
```.cpp
2018-12-29 00:46:47 +08:00
// 3. add a plot for the data mean line (graphTemperature) and range (graphTemperatureRange)
2019-01-20 17:49:29 +08:00
JKQTPFilledVerticalRangeGraph* graphTemperatureRange=new JKQTPFilledVerticalRangeGraph(&plot);
2018-12-29 00:46:47 +08:00
// 4. copy data into datastore and immediately set the yColumn
size_t colDate=ds->addCopiedColumn(date, "date");
2019-01-26 20:00:40 +08:00
graphTemperatureRange->setXColumn(colDate);
graphTemperatureRange->setYColumn(ds->addCopiedColumn(temperature_min, "temperature_min"));
graphTemperatureRange->setYColumn2(ds->addCopiedColumn(temperature_max, "temperature_max"));
2018-12-29 00:46:47 +08:00
// 5. min/max range data
// graph fill color is a lighter shade of the average graph
2019-01-26 20:00:40 +08:00
graphTemperatureRange->setFillColor(graphTemperature->getColor().lighter());
2018-12-29 00:46:47 +08:00
// don't draw lines of the data
2019-01-26 20:00:40 +08:00
graphTemperatureRange->setDrawLine(false);
2018-12-29 00:46:47 +08:00
// plot label in key
2019-01-26 20:00:40 +08:00
graphTemperatureRange->setTitle("Min/Max Temperature");
2018-12-29 00:46:47 +08:00
// add the graph to the plot, so it is actually displayed
plot.addGraph(graphTemperatureRange);
```
On top of that plot, a second plot is added, which draws the average temperatures of each month as a line:
2019-01-19 16:40:52 +08:00
```.cpp
2018-12-29 00:46:47 +08:00
// 3. add a plot for the data mean line (graphTemperature) and range (graphTemperatureRange)
2019-01-20 17:49:29 +08:00
JKQTPXYLineErrorGraph* graphTemperature=new JKQTPXYLineErrorGraph(&plot);
2018-12-29 00:46:47 +08:00
// 4. copy data into datastore and immediately set the yColumn
size_t colDate=ds->addCopiedColumn(date, "date");
2019-01-26 20:00:40 +08:00
graphTemperature->setXColumn(colDate);
graphTemperature->setYColumn(ds->addCopiedColumn(temperature, "temperature"));
2018-12-29 00:46:47 +08:00
// 5. min/max range data
// .... see above
// 6. average data
// don't use symbols
2019-04-22 19:27:50 +08:00
graphTemperature->setSymbolType(JKQTPNoSymbol);
2018-12-29 00:46:47 +08:00
// set the line width
2019-01-26 03:16:04 +08:00
graphTemperature->setLineWidth(1);
2018-12-29 00:46:47 +08:00
// draw small symbols
2019-01-26 20:00:40 +08:00
graphTemperature->setSymbolSize(6);
2018-12-29 00:46:47 +08:00
// graph title
2019-01-26 20:00:40 +08:00
graphTemperature->setTitle("Average Temperature");
2018-12-29 00:46:47 +08:00
// add the graph to the plot, so it is actually displayed
plot.addGraph(graphTemperature);
```
Finally the x-axis is formatted to display dates (see [Qt-Documentation of `QDateTime::toString()` ]((http://doc.qt.io/qt-5/qdatetime.html#toString ) for details on the formating strings):
2019-01-19 16:40:52 +08:00
```.cpp
2018-12-29 00:46:47 +08:00
// 7. format the plot
// set the title above the plot, use LaTeX instructions to make text bold
2019-01-26 03:16:04 +08:00
plot.getPlotter()->setPlotLabel("\\textbf{Weather in Gelsenkirchen, 2017-2018}");
2018-12-29 00:46:47 +08:00
// set x-axis date-time-axis
2019-01-26 20:00:40 +08:00
plot.getXAxis()->setLabelType(JKQTPCALTdatetime);
2019-01-26 03:16:04 +08:00
plot.getXAxis()->setAxisLabel("Date");
2018-12-29 00:46:47 +08:00
// set format string for date axis (e.g. Jan '18), see Documentation of QDateTime::toString()
2019-01-26 20:00:40 +08:00
plot.getXAxis()->setTickDateTimeFormat("MMM ''yy");
2018-12-29 00:46:47 +08:00
// set y-axis temperature axis
2019-01-26 03:16:04 +08:00
plot.getYAxis()->setAxisLabel("Average Daily Temperature [{\\degree}C]");
2018-12-29 00:46:47 +08:00
```
The result looks like this:
2019-06-21 04:24:47 +08:00
![symbols_and_styles ](https://raw.githubusercontent.com/jkriege2/JKQtPlotter/master/screenshots/dateaxes.png )
2018-12-29 00:46:47 +08:00
2019-05-18 02:46:52 +08:00
# Time Axis
2018-12-29 00:46:47 +08:00
A second variant (see the example CPP-file) displays data with a time-axis:
2019-06-21 04:24:47 +08:00
![symbols_and_styles ](https://raw.githubusercontent.com/jkriege2/JKQtPlotter/master/screenshots/dateaxes_timeaxis.png )
2018-12-29 00:46:47 +08:00
For that example data-pasring is a bit different, because the file only contains times and no dates:
2019-01-19 16:40:52 +08:00
```.cpp
2018-12-29 00:46:47 +08:00
// 2. now we create data vectors with data parsed from a CSV-file
QVector< double > time;
QVector< double > temperature;
// parse a textfile with comments on the first line and the
// semicolon separated data. The first column is a time
// the second contain a floating-point number with temperatures
QFile file(":/weatherdata_heidelberg_2018-10-14.csv");
file.open(QFile::ReadOnly|QFile::Text);
file.readLine(); // eat comment
while (!file.atEnd()) {
QString line=file.readLine();
QTextStream in(&line);
QStringList items=line.split(";");
// date/time values are stored as doubles representing the corresponding
// number of milliseconds sind epoch. Since the data is time only, we have to use an arbitrary
// date as basis
time< < QDateTime::fromString ( " 1970-01-01T " + items [ 0 ] , Qt::ISODate ) . toUTC ( ) . toMSecsSinceEpoch ( ) ;
// store Heidelbergs daily temperature
temperature< < items [ 1 ] . toDouble ( ) ;
}
```
The parsed data looks like this:
```
Time; Temperature [degC]
00:00:00; 24.2
00:10:00; 24.2
00:20:00; 24.1
00:30:00; 24.1
...
```
Axis formating for this example is done like this:
2019-01-19 16:40:52 +08:00
```.cpp
2018-12-29 00:46:47 +08:00
// 7. format the plot
// set the title above the plot, use LaTeX instructions to make text bold
2019-01-26 03:16:04 +08:00
plot.getPlotter()->setPlotLabel("\\textbf{Weather in Heidelberg, 14^{th} Oct 2018}");
2018-12-29 00:46:47 +08:00
// set x-axis date-time-axis
2019-01-26 20:00:40 +08:00
plot.getXAxis()->setLabelType(JKQTPCALTtime);
2019-01-26 03:16:04 +08:00
plot.getXAxis()->setAxisLabel("Time of Day");
2018-12-29 00:46:47 +08:00
// set format string for time axis with 24-hour and minute only,
// see QDateTime::toString() documentation for details on format strings
2019-01-26 20:00:40 +08:00
plot.getXAxis()->setTickTimeFormat("HH:mm");
2018-12-29 00:46:47 +08:00
// set y-axis temperature axis
2019-01-26 03:16:04 +08:00
plot.getYAxis()->setAxisLabel("Temperature [{\\degree}C]");
2018-12-29 00:46:47 +08:00
```