computeTestRegression {rotRPackage} | R Documentation |
This ROT function, called from a Test C++ object, is given 2 samples, and optionnaly a test level. It then computes the result of a regression test against the null hypothesis that the linear regression coefficients are significant. It returns the test result for each X variable, the statistics and the p-values.
computeTestRegression(outSample, inSample, testLevel = 0.95)
outSample |
The 'out' sample (n vector). |
inSample |
The 'in' sample. (m-by-n matrix) |
testLevel |
the test level. (scalar in [0:1]) |
A list is returned, containing :
testResult |
The result. 1 means H0 is not rejected. (scalar) |
threshold |
The threshold applied to the p-value when deciding the outcome of the test. |
pvalues |
The test pvalues. (vector) |
Pierre-Matthieu Pair, Softia for EDF.
outSample=iris[1:50,1] inSample=as.matrix(iris[1:50,2:4]) computeTestRegression(outSample, inSample)