一個程式Example reference link: https://github.com/primaryobjects/Accord.NET/blob/master/Sources/Accord.Statistics/Filters/Normalization.cs 程式碼區塊(修改一些些資料欄位): using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Accord.IO; using Accord.MachineLearning; using Accord.Math; using Accord.Collections; using Accord.Diagnostics; using Accord.Controls; using Accord.Statistics; using System.Data; // DataTable using Accord.Statistics.Filters; // for Normalization using Accord; namespace Accord_Normalize_exercise { class Program { static void Main(string[] args) { //Normalization Class //Create the sample table DataTable table = new DataTable("Sample data"); table.Columns.Add("Age", typeof(double)); table.Columns.Add("Label", typeof(string)); //如果我的 年齡 < 20 就是 Child //如果我的 年齡 >...