Click or drag to resize

CrossPredictedXResidualsEvaluator Constructor

Initializes a new instance of the CrossPredictedXResidualsEvaluator class.

Namespace: Altaxo.Calc.Regression.Multivariate
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public CrossPredictedXResidualsEvaluator(
	int numberOfPoints,
	double[] xOfX,
	int numFactors,
	ICrossValidationGroupingStrategy groupingStrategy,
	ISingleSpectrumPreprocessor preprocessSingleSpectrum,
	IEnsembleMeanScalePreprocessor preprocessEnsembleOfSpectra,
	MultivariateRegression analysis
)

Parameters

numberOfPoints  Int32
Total number of observations (spectra).
xOfX  Double
The X values common to all unprocessed spectra.
numFactors  Int32
The initial number of factors to use.
groupingStrategy  ICrossValidationGroupingStrategy
The grouping strategy used for cross validation.
preprocessSingleSpectrum  ISingleSpectrumPreprocessor
The preprocessor applied to each single spectrum.
preprocessEnsembleOfSpectra  IEnsembleMeanScalePreprocessor
The preprocessor applied to an ensemble of spectra.
analysis  MultivariateRegression
The analysis instance used to build the model and compute residuals.
See Also