// The covariance can be found at estimator.covariance_
plotting.plot_matrix(estimator.covariance_, labels=labels,
ax=plt.gca(), vmax=1, vmin=-1)
plt.title("Covariance")
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
After Change
// The covariance can be found at estimator.covariance_
plotting.plot_matrix(estimator.covariance_, labels=labels,
figure=(9, 7), vmax=1, vmin=-1,
title="Covariance")
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////