コード例 #1
0
        private void ButTextInp_Click(object sender, EventArgs e)
        {
            var dialogResult = openFileDialog.ShowDialog();

            if (dialogResult == DialogResult.Cancel)
            {
                return;
            }

            string filename = openFileDialog.FileName;

            lines = System.IO.File.ReadAllLines(filename);

            ButTextInp.Hide();
            TextFileReader.Text = "Есть ли качественные признаки или факторы среди данных?";
            ButtYes1.Show();
            ButtNo1.Show();

            reg = new Regression();
            //reg.Analyt(lines);

            //TextFileReader.Text = "Есть ли структурные сдвиги в данной модели?";
        }