Draw 2-d distribution graphsΒΆ
In this example we are going to draw PDF and CDF of a bidimensional distribution.
[1]:
from __future__ import print_function
import openturns as ot
# assume a 2-d distribution
distribution = ot.Normal([0.0, 2.0], [1.0, 0.6], ot.CorrelationMatrix(2))
print(distribution)
Normal(mu = [0,2], sigma = [1,0.6], R = [[ 1 0 ]
[ 0 1 ]])
[2]:
# draw PDF
distribution.drawPDF()
[2]:
[3]:
# draw CDF
distribution.drawCDF()
[3]: