10 from opals
import Histo
11 import matplotlib.pylab
as pl
13 from scipy.stats
import norm
15 def generate_plot(filename, showPlot = False, plotFile = 'QQplot.png'):
17 probabilities = [0.01, 0.05, 0.25, 0.50, 0.75, 0.95, 0.99]
21 quNorm = [ dist.ppf(p)
for p
in probabilities]
22 quNormArr = numpy.array(quNorm)
26 his.commons.screenLogLevel = opals.Types.LogLevel.error
27 his.inFile = [filename]
28 his.probabilities = probabilities
29 his.exactComputation =
True
32 stats = his.histogram[0]
35 quantiles = stats.getQuantiles()
36 alpha, qu = zip(*quantiles)
38 quArr = numpy.array(qu)
41 z = numpy.polyfit(quNormArr, quArr, 1)
45 pl.plot(quNormArr, quArr,
'bo-', ms = 5, mec =
'b', mfc =
'w')
46 pl.plot(quNormArr, p(quNormArr), color=
"purple", linewidth=2, linestyle=
"--")
48 pl.xlabel(
'Quantiles of standard normal distribution')
49 pl.ylabel(
'Quantiles of residuals')
55 for idx
in range(0,len(probabilities),lf_after):
56 text +=
'\n' +
', '.join(map(str,probabilities[idx:idx+lf_after]))
57 pl.text(0.8, min(qu), text, backgroundcolor =
'w')
63 pl.savefig(plotFile, format=
'png')
66 if __name__ ==
"__main__":
70 if len(sys.argv) == 1:
71 print(
"ODM/Raster file misssing")
74 inputFile = sys.argv[1]
77 showPlot = bool(int(sys.argv[2]))
79 generate_plot(inputFile, showPlot)