close
Close a QPlot window
Call signature:
close(fn=None)
Help text:
close closes the current window.
close(filename) closes the named window.
See also closeall.
Example:

import qplot as qp

import numpy as np

import time

qp.figure('close', 3, 3)

qp.mark([0,1], [0,1])

time.sleep(1)

qp.close()