[Quantproject-developers] QuantProject/b7_Scripts/WalkForwardTesting/LinearRegression/Logging Anal
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2012-05-01 00:06:04
|
Update of /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/LinearRegression/Logging
In directory vz-cvs-3.sog:/tmp/cvs-serv32509/b7_Scripts/WalkForwardTesting/LinearRegression/Logging
Modified Files:
AnalyzerForLinearRegressionTestingPositions.cs
Log Message:
The read only property
public double CenteredRSquare
is logged now
Index: AnalyzerForLinearRegressionTestingPositions.cs
===================================================================
RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/LinearRegression/Logging/AnalyzerForLinearRegressionTestingPositions.cs,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** AnalyzerForLinearRegressionTestingPositions.cs 3 Aug 2011 22:36:42 -0000 1.4
--- AnalyzerForLinearRegressionTestingPositions.cs 1 May 2012 00:06:02 -0000 1.5
***************
*** 64,67 ****
--- 64,71 ----
get { return this.linearRegressionTestingPositions.FitnessInSample; }
}
+ public double CenteredRSquare
+ {
+ get { return this.linearRegressionTestingPositions.LinearRegression.CenteredRSquare; }
+ }
#region ShortDescription
|