Encog.App.Analyst.Wizard.AnalystWizard.AnalystWizard C# (CSharp) Method

AnalystWizard() public method

Construct the analyst wizard.
public AnalystWizard ( EncogAnalyst theAnalyst ) : System
theAnalyst EncogAnalyst The analyst to use.
return System
        public AnalystWizard(EncogAnalyst theAnalyst)
        {
            _directClassification = false;
            _taskSegregate = true;
            _taskRandomize = true;
            _taskNormalize = true;
            _taskBalance = false;
            _taskCluster = true;
            _range = NormalizeRange.NegOne2One;
            _analyst = theAnalyst;
            _script = _analyst.Script;
            _methodType = WizardMethodType.FeedForward;
            _targetField = "";
            _goal = AnalystGoal.Classification;
            _leadWindowSize = 0;
            _lagWindowSize = 0;
            _includeTargetField = false;
            _missing = new DiscardMissing();
        }