Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Classification/UCI/Iris.cs @ 8889

Last change on this file since 8889 was 8889, checked in by sforsten, 11 years ago

#1941: IUCIDataDescriptor to add more information about the datasets to the data, to distinguish between different version, as suggested by abeham

File size: 1.9 KB
RevLine 
[8841]1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22
23using System;
24namespace HeuristicLab.Problems.Instances.DataAnalysis {
[8889]25  public class Iris : IUCIDataDescriptor {
[8841]26    public string Name { get { return "Iris"; } }
27    public string Description {
28      get {
29        return "Data Set Information:" + Environment.NewLine
30        + "This is perhaps the best known database to be found in the pattern " + Environment.NewLine
31        + "recognition literature. Fisher's paper is a classic in the field and "
32        + "is referenced frequently to this day. (See Duda & Hart, for example.) "
33        + "The data set contains 3 classes of 50 instances each, where each class "
34        + "refers to a type of iris plant. One class is linearly separable from the "
35        + "other 2; the latter are NOT linearly separable from each other." + Environment.NewLine
36        + "Predicted attribute: class of iris plant." + Environment.NewLine
37        + "This is an exceedingly simple domain.";
38      }
39    }
[8889]40    public string Donor { get { return "M. Marshall"; } }
41    public int Year { get { return 1988; } }
[8841]42  }
43}
Note: See TracBrowser for help on using the repository browser.