ipynb source code

Linear model analysis

# import relevant module
import openturns as ot
import otpod
# enable display figure in notebook
%matplotlib inline

Generate data

N = 100
ot.RandomGenerator.SetSeed(123456)
defectDist = ot.Uniform(0.1, 0.6)
# normal epsilon distribution
epsilon = ot.Normal(0, 1.9)
defects = defectDist.getSample(N)
signalsInvBoxCox = defects * 43. + epsilon.getSample(N) + 2.5
# Inverse Box Cox transformation
invBoxCox = ot.InverseBoxCoxTransform(0.3)
signals = invBoxCox(signalsInvBoxCox)

Run analysis without Box Cox

analysis = otpod.UnivariateLinearModelAnalysis(defects, signals)

Get some particular results

print(analysis.getIntercept())
print(analysis.getR2())
print(analysis.getKolmogorovPValue())
[Intercept for uncensored case : -604.758]
[R2 for uncensored case : 0.780469]
[Kolmogorov p-value for uncensored case : 0.803087]

Show graphs

The linear model is not correct

fig, ax = analysis.drawLinearModel()
fig.show()
../_images/linearAnalysis_12_0.png

The residuals are not homoskedastic

fig, ax = analysis.drawResiduals()
fig.show()
../_images/linearAnalysis_14_0.png

Run analysis with Box Cox

analysis = otpod.UnivariateLinearModelAnalysis(defects, signals, boxCox=True)

Save all results in a csv file

analysis.saveResults('results.csv')

Show graphs

The linear regression model with data

fig, ax = analysis.drawLinearModel(name='figure/linearModel.png')
# The figure is saved as png file
fig.show()
../_images/linearAnalysis_22_0.png

The residuals with respect to the defects

fig, ax = analysis.drawResiduals(name='figure/residuals.eps')
# The figure is saved as eps file
fig.show()
../_images/linearAnalysis_24_0.png

The fitted residuals distribution with the histogram

fig, ax = analysis.drawResidualsDistribution()
ax.set_ylim(ymax=0.45)
fig.show()
# The figure is saved after the changes
fig.savefig('figure/residualsDistribution.png', bbox_inches='tight')
../_images/linearAnalysis_26_0.png

The residuals QQ plot

fig, ax = analysis.drawResidualsQQplot()
fig.show()
../_images/linearAnalysis_28_0.png

The Box Cox likelihood with respect to the defect

fig, ax = analysis.drawBoxCoxLikelihood(name='figure/BoxCoxlikelihood.png')
fig.show()
../_images/linearAnalysis_30_0.png