CSMSL.Util.LinearRegression.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString()
        {
            return string.Format("y = {0:F2}x + {1:F2} (R^2 = {2:F4})", Slope, Intercept, RSquared);
        }