lets_plot.bistro.corr.corr_plot¶
- class lets_plot.bistro.corr.corr_plot(data, show_legend=True, flip=True, threshold=None)¶
This class is intended to build correlation matrix plot.
Examples
1import numpy as np 2from lets_plot import * 3from lets_plot.bistro.corr import * 4LetsPlot.setup_html() 5np.random.seed(42) 6data = {var: np.random.poisson(size=10) for var in 'abcdef'} 7corr_plot(data).tiles().build()