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