facecolor="none", edgecolor="gray", linestyle="--")
ax_nstd1.scatter([mu[0]], [mu[1]], c="red", s=3)
ax_nstd1.set_title(f"One standard deviation")
// Two standard deviations
ax_nstd2.scatter(x, y, s=0.5)
confidence_ellipse(x, y, ax_nstd2, n_std=2,
After Change
// Mark the mean ("mu")
ax_pos.scatter([mu[0]], [mu[1]], c="red", s=3)
ax_pos.set_title(f"Positive correlation")
plt.show()
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//