In [1]:
#Show plots inline, and load main getdist plot module and samples class
%matplotlib inline
from __future__ import print_function
from getdist import plots, MCSamples
import getdist, IPython
print('Version: ',getdist.__version__)


Version:  0.2.6

In [5]:
import getdist.plots as gplot
import os

g=gplot.getSubplotPlotter(chain_dir=r'/home/claudio/Servicio-Social/Parametros/CosmoMC/CosmoMC-master/chains')
roots = ['test']
xparams = [u'param1', u'param2']
yparams = [u'param1', u'param2']
filled=True
g.rectangle_plot(xparams, yparams, roots=roots,filled=filled)
g.export()


WARNING:root:Parameters are 100% correlated: param2, param2

In [2]:
import getdist.plots as gplot
import os

g=gplot.getSubplotPlotter(chain_dir=r'/home/claudio/Servicio-Social/Parametros/CosmoMC/CosmoMC-master/chains')
roots = ['test']
params = [u'param1', u'param2']
param_3d = None
g.triangle_plot(roots, params, plot_3d_with_param=param_3d, filled=True, shaded=False)
g.export()



In [ ]: