queueing-modelsim icon indicating copy to clipboard operation
queueing-modelsim copied to clipboard

Plot environment

Open Hoseinkangavarnazari opened this issue 8 months ago • 1 comments

When I wanted to run the code and see the plots for D/D/1/K I encountered with

FigureCanvasAgg is non-interactive, and thus cannot be shown
  plt.show()

To resolve this error, I had to add a few lines in the src/plots.py as follows:

import matplotlib
matplotlib.use('Qt5Agg')

Hoseinkangavarnazari avatar Oct 12 '23 15:10 Hoseinkangavarnazari