Last change
on this file since 15802 was
7953,
checked in by spimming, 13 years ago
|
#1807:
- added file dialog to select csv problem file
- wizard page to select target variable
- plugin dependencies updated
|
File size:
890 bytes
|
Rev | Line | |
---|
[7808] | 1 |
|
---|
| 2 | using HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard;
|
---|
| 3 | namespace HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard {
|
---|
| 4 | public class DataAnalysisExperimentWizard {
|
---|
| 5 | private WizardBase wizard;
|
---|
[7824] | 6 | private DataAnalysisWizardContext context;
|
---|
[7808] | 7 |
|
---|
| 8 | public DataAnalysisExperimentWizard() {
|
---|
[7824] | 9 | context = new DataAnalysisWizardContext();
|
---|
[7808] | 10 | wizard = new WizardBase();
|
---|
[7824] | 11 | wizard.Text = "Data Analysis Service";
|
---|
| 12 | wizard.AddPage(new ProblemDataPage(context));
|
---|
[7953] | 13 | wizard.AddPage(new TargetVariablePage(context));
|
---|
[7824] | 14 | wizard.AddPage(new SelectAnalysisPage(context));
|
---|
| 15 | wizard.AddPage(new WizardPage());
|
---|
[7912] | 16 | wizard.AddPage(new MediumAnalysisPage(context));
|
---|
[7944] | 17 | wizard.AddPage(new ResultPage(context));
|
---|
| 18 | //wizard.AddPage(new ExperimentViewPage(context));
|
---|
[7824] | 19 |
|
---|
[7808] | 20 | }
|
---|
| 21 |
|
---|
| 22 | public void Show() {
|
---|
| 23 | wizard.Show();
|
---|
| 24 | }
|
---|
| 25 | }
|
---|
| 26 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.