#region License Information /* HeuristicLab * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion using System; namespace HeuristicLab.Problems.Instances.DataAnalysis { public class Thyroid : IUCIDataDescriptor { public string Name { get { return "Thyroid"; } } public string Description { get { return "Thyroid gland data. ('normal', hypo and hyper functioning)" + Environment.NewLine + Environment.NewLine + "Attr. no :" + Environment.NewLine + "1: Class attribute (1 = normal, 2 = hyper, 3 = hypo)" + Environment.NewLine + "2: T3-resin uptake test. (A percentage)" + Environment.NewLine + "3: Total Serum thyroxin as measured by the isotopic displacement method." + Environment.NewLine + "4: Total serum triiodothyronine as measured by radioimmuno assay." + Environment.NewLine + "5: basal thyroid-stimulating hormone (TSH) as measured by radioimmuno assay." + Environment.NewLine + "6: Maximal absolute difference of TSH value after injection of 200 micro grams of " + "thyrotropin-releasing hormone as compared to the basal value." + Environment.NewLine + "All attributes are continuous."; } } public string Donor { get { return "S. Aeberhard"; } } public int Year { get { return 1992; } } } }