This function plots a visualization of a queue's skyline (number of jobs in system, queue, and server) based on inputted statistics.
defaultPlotSkyline(
times,
numsInSys,
numsInQue,
numsInSvr,
rangePlot,
rangeAll,
show,
title = ""
)
Vector of times at which statistics were recorded (x-values)
Number of jobs in the system at a given time, corresponding to provided times.
Number of jobs in the queue at a given time, corresponding to provided times.
Number of the next job that will enter the queue.
Range/subset of data to plot (vector of min and max)
Range of all of the data (vector of min and max)
A vector of 3 logicals that specifies to show number in system, queue, and server, respectively.
Title of the plot
Generates a snapshot skyline plot and is the default plotting function for
ssq
and msq
.