yasc.eda.corr_analysis(data, tight_layout=False, show_plot=False, title=None, rot=None, **kwargs)¶Correlation analysis.
Observed data.
Whether to make figure tight layout. Defaults to False.
Whether to show heatmap of correlation matrix.
strTitle of heatmap of correlation matrix. Defautls to None.
Degrees of rotation for xticklabels.
All keyword arguments that are passed to seaborn.heatmap().
tupleReturns correlation matrix and axes object with the heatmap.
Examples
Plot a heatmap of correlation matrix of german credit data.
>>> from yasc.data import german_data
>>> from yasc.eda import corr_analysis
>>> data = german_data()
>>> corr, ax = corr_analysis(data)