private void TrainSetFilePicker_FilePicked(string path) { trainPoints = CsvFileParser.ReadFile(path); LearnButton.IsEnabled = true; this.PlotTrainSet(); }
private void TestFilePicker_FilePicked(string path) { this.testPoints = CsvFileParser.ReadFile(path); this.PlotTestSet(); }