dfm / corner.py

Make some beautiful corner plots

Home Page:http://corner.readthedocs.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How can you set transparency ("alpha") or change the number of data points plotted ?

mdzrod opened this issue · comments

I have a lot of data points behind my contour and would like to either change the transparency or plot less points.

I think you should be able to do this using:

corner.corner(..., data_kwargs=dict(alpha=0.1))

The default value is 0.1.

Thank you. That worked.