Forgive me if I am using the wrong terminology. I am trying to graph how productive a machine is over time with incomplete data. I am polling the machine at a random interval and getting the total number of parts produced at that moment in time. From that, I get a list of times and part counts like this:
seconds part count
0 0
64 2
145 5
271 9
282 10
365 12
445 14
511 17
618 20
The above list of data simulates polling (at a random interval) a process that produces a part every 30 seconds. When I graph this, it does not seem to accurately represent the underlying data (should be a straight line). I want to highlight times when the machine is idle or running slowly. Is there a way to approximate when each part was made.



