ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Numeric values functions / Statistical functions
  • Calculating the coefficient of correlation
StatCorrelation (Example)
Calculating the coefficient of correlation
The following code is used to calculate the coefficient of correlation between row 3 and row 5 of a matrix.
We assume that the matrix is already created and initialized.
// -- Click code on BTN_CorrelationCoef
// Declare the variables
ResCorrelationCoef is real
// Coefficient of correlation between row 3 and row 5 of the matrix
ResCorrelationCoef = StatCorrelation("MyMatrix", 3, 5, False)
// Display the coefficient
IF ResCorrelationCoef <> 0 THEN
Info("The correlation coefficient is: " + ResCorrelationCoef)
ELSE
// Error while calculating the correlation coefficient?
IF StatError() <> 0 THEN
Info("The correlation coefficient is null")
ELSE
// Display the error message
Error(ErrorInfo(errMessage))
END
END
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help