private void Button_Click_15(object sender, RoutedEventArgs e)
        {
            Analyze.Clustering2 clustering = new Analyze.Clustering2();
            clustering.ClusterTable = clusterTable;
            clustering.Report = (text) =>
            {
                MyLib.Task.Utility.UITask(() =>
                {
                    ClusteringRepotTextBox.Text += text + "\n";
                }, UIThread);

            };
            System.Threading.Tasks.Task.Factory.StartNew(() =>
                {
                    clustering.Run();
                }).ContinueWith((n) => clustering.Update());
        }