I need to create a chart with the system load over a period of time. The main issue is that the data extraction is happening at random intervals so I need to be able to specify the X axis time position for the value. Any suggestion on a package/module with such functionality ?
Sample Data:
data = { '10:20' : 5, '10:28' : 8, '10:30' : 1 }
I’m not sure I understand the problem; any graphing library will let you specify
xcoordinates for the points that you plot. Try e.g.matplotlib.