public double Correlation() { double t = x_stats.StdDev() * y_stats.StdDev(); return(S_xy / ((n - 1) * t)); }