Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/05/14 14:48:35 (11 years ago)
Author:
rstoll
Message:

Added License notice

Location:
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations
Files:
14 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/DataGridContent.cs

    r10369 r10539  
    1 using System;
     1#region License Information
     2/* HeuristicLab
     3 * Copyright (C) 2002-2013 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
     22using System;
    223using System.Collections.Generic;
    324using System.Drawing;
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/DataGridLogic.cs

    r10371 r10539  
    1 using System;
     1#region License Information
     2/* HeuristicLab
     3 * Copyright (C) 2002-2013 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
     22using System;
    223using System.Collections.Generic;
    324using System.Globalization;
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/FilterContent.cs

    r10313 r10539  
    1 using HeuristicLab.Common;
     1#region License Information
     2/* HeuristicLab
     3 * Copyright (C) 2002-2013 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
     22using System.Drawing;
     23using HeuristicLab.Common;
    224using HeuristicLab.Core;
    3 using System;
    4 using System.Collections.Generic;
    5 using System.Drawing;
    6 using System.Linq;
    7 using System.Text;
    825
    9 namespace HeuristicLab.DataPreprocessing
    10 {
     26namespace HeuristicLab.DataPreprocessing {
    1127  [Item("Filter", "Represents the filter grid.")]
    12   public class FilterContent : Item
    13   {
     28  public class FilterContent : Item {
    1429
    1530    public static new Image StaticItemImage {
     
    1833
    1934    private readonly IFilterLogic filterLogic;
    20     public FilterContent(IFilterLogic theFilterLogic)
    21     {
     35    public FilterContent(IFilterLogic theFilterLogic) {
    2236      filterLogic = theFilterLogic;
    2337    }
    2438
    25     public IFilterLogic FilterLogic
    26     {
     39    public IFilterLogic FilterLogic {
    2740      get {
    2841        return filterLogic;
     
    3144
    3245    public FilterContent(FilterContent content, Cloner cloner)
    33       : base(content, cloner)
    34     {
     46      : base(content, cloner) {
    3547
    3648    }
    3749
    38     public override IDeepCloneable Clone(Cloner cloner)
    39     {
     50    public override IDeepCloneable Clone(Cloner cloner) {
    4051      return new FilterContent(this, cloner);
    4152    }
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/FilterLogic.cs

    r10303 r10539  
    1 using System;
    2 using System.Collections.Generic;
    3 using System.Linq;
    4 using System.Text;
     1#region License Information
     2/* HeuristicLab
     3 * Copyright (C) 2002-2013 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
    521
    6 namespace HeuristicLab.DataPreprocessing
    7 {
    8   public class FilterLogic : IFilterLogic
    9   {
     22
     23namespace HeuristicLab.DataPreprocessing {
     24  public class FilterLogic : IFilterLogic {
    1025  }
    1126}
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/HistogramContent.cs

    r10313 r10539  
    1 using HeuristicLab.Common;
     1#region License Information
     2/* HeuristicLab
     3 * Copyright (C) 2002-2013 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
     22using System.Drawing;
     23using HeuristicLab.Common;
    224using HeuristicLab.Core;
    3 using System.Drawing;
    4 using System;
    5 using System.Collections.Generic;
    625
    7 using System.Linq;
    8 using System.Text;
    926
    10 namespace HeuristicLab.DataPreprocessing
    11 {
     27namespace HeuristicLab.DataPreprocessing {
    1228  [Item("Histogram", "Represents the histogram grid.")]
    13   public class HistogramContent : Item
    14   {
     29  public class HistogramContent : Item {
    1530
    1631    private readonly IHistogramLogic histogramLogic;
    17     public HistogramContent(IHistogramLogic theHistogramLogic)
    18     {
     32    public HistogramContent(IHistogramLogic theHistogramLogic) {
    1933      histogramLogic = theHistogramLogic;
    2034    }
    2135
    2236    public HistogramContent(HistogramContent content, Cloner cloner)
    23       : base(content, cloner)
    24     {
     37      : base(content, cloner) {
    2538
    2639    }
    2740
    28     public IHistogramLogic HistogramLogic
    29     {
    30       get
    31       {
     41    public IHistogramLogic HistogramLogic {
     42      get {
    3243        return histogramLogic;
    3344      }
    3445    }
    3546
    36     public static new Image StaticItemImage
    37     {
     47    public static new Image StaticItemImage {
    3848      get { return HeuristicLab.Common.Resources.VSImageLibrary.PieChart; }
    3949    }
    4050
    41     public override IDeepCloneable Clone(Cloner cloner)
    42     {
     51    public override IDeepCloneable Clone(Cloner cloner) {
    4352      return new HistogramContent(this, cloner);
    4453    }
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/HistogramLogic.cs

    r10303 r10539  
    1 using System;
    2 using System.Collections.Generic;
    3 using System.Linq;
    4 using System.Text;
     1#region License Information
     2/* HeuristicLab
     3 * Copyright (C) 2002-2013 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
    521
    6 namespace HeuristicLab.DataPreprocessing
    7 {
    8   public class HistogramLogic : IHistogramLogic
    9   {
     22
     23namespace HeuristicLab.DataPreprocessing {
     24  public class HistogramLogic : IHistogramLogic {
    1025  }
    1126}
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/LineChartContent.cs

    r10313 r10539  
    1 using HeuristicLab.Common;
     1#region License Information
     2/* HeuristicLab
     3 * Copyright (C) 2002-2013 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
     22using System.Drawing;
     23using HeuristicLab.Common;
    224using HeuristicLab.Core;
    3 using System.Drawing;
    4 using System;
    5 using System.Collections.Generic;
    6 using System.Linq;
    7 using System.Text;
    825
    9 namespace HeuristicLab.DataPreprocessing
    10 {
     26namespace HeuristicLab.DataPreprocessing {
    1127  [Item("LineChart", "Represents the line chart grid.")]
    12   public class LineChartContent : Item
    13   {
     28  public class LineChartContent : Item {
    1429
    1530    private readonly ILineChartLogic lineChartLogic;
    16     public LineChartContent(ILineChartLogic theLineChartLogic)
    17     {
     31    public LineChartContent(ILineChartLogic theLineChartLogic) {
    1832      lineChartLogic = theLineChartLogic;
    1933    }
    2034
    2135    public LineChartContent(LineChartContent content, Cloner cloner)
    22       : base(content, cloner)
    23     {
     36      : base(content, cloner) {
    2437
    2538    }
    2639
    27     public ILineChartLogic LineChartLogic
    28     {
    29       get
    30       {
     40    public ILineChartLogic LineChartLogic {
     41      get {
    3142        return lineChartLogic;
    3243      }
    3344    }
    3445
    35     public static new Image StaticItemImage
    36     {
     46    public static new Image StaticItemImage {
    3747      get { return HeuristicLab.Common.Resources.VSImageLibrary.PieChart; }
    3848    }
    3949
    40     public override IDeepCloneable Clone(Cloner cloner)
    41     {
     50    public override IDeepCloneable Clone(Cloner cloner) {
    4251      return new LineChartContent(this, cloner);
    4352    }
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/LineChartLogic.cs

    r10382 r10539  
    1 using System;
     1#region License Information
     2/* HeuristicLab
     3 * Copyright (C) 2002-2013 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
    222using System.Collections.Generic;
    3 using System.Linq;
    4 using System.Text;
    523using HeuristicLab.Analysis;
    624
    7 namespace HeuristicLab.DataPreprocessing
    8 {
    9   public class LineChartLogic : ILineChartLogic
    10   {
     25namespace HeuristicLab.DataPreprocessing {
     26  public class LineChartLogic : ILineChartLogic {
    1127    private IPreprocessingData preprocessingData;
    1228    private DataTable dataTable;
     
    2137      IEnumerable<string> variableNames = preprocessingData.VariableNames;
    2238
    23       foreach(string variableName in variableNames)
    24       {
     39      foreach (string variableName in variableNames) {
    2540        IList<double> values = preprocessingData.GetValues<double>(variableName);
    2641        DataRow row = new DataRow(variableName, "", values);
    2742        dataTable.Rows.Add(row);
    2843      }
    29  
     44
    3045    }
    3146
    32     public IEnumerable<object> GetVariableNames()
    33     {
     47    public IEnumerable<object> GetVariableNames() {
    3448      return preprocessingData.VariableNames;
    3549    }
    3650
    37     public DataTable GetDataTable()
    38     {
     51    public DataTable GetDataTable() {
    3952      return dataTable;
    4053    }
     
    5871
    5972      foreach (var item in dataTable.Rows) {
    60          if(item.Name == name)
    61            return true;
     73        if (item.Name == name)
     74          return true;
    6275      }
    6376      return false;
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/ManipulationLogic.cs

    r10535 r10539  
    1 using System;
     1#region License Information
     2/* HeuristicLab
     3 * Copyright (C) 2002-2013 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
     22using System;
    223using System.Collections.Generic;
    324using System.Linq;
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/SearchLogic.cs

    r10367 r10539  
    1 using System;
     1#region License Information
     2/* HeuristicLab
     3 * Copyright (C) 2002-2013 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
     22using System;
    223using System.Collections.Generic;
    324using System.Linq;
    4 using System.Text;
    525
    626namespace HeuristicLab.DataPreprocessing {
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/StatisticsContent.cs

    r10370 r10539  
    1 using System.Drawing;
     1#region License Information
     2/* HeuristicLab
     3 * Copyright (C) 2002-2013 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
     21using System.Drawing;
    222using HeuristicLab.Common;
    323using HeuristicLab.Core;
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/StatisticsLogic.cs

    r10537 r10539  
    1 using System;
     1#region License Information
     2/* HeuristicLab
     3 * Copyright (C) 2002-2013 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
     22using System;
    223using System.Collections.Generic;
    324using System.Linq;
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/TransformationContent.cs

    r10313 r10539  
    1 using HeuristicLab.Common;
     1#region License Information
     2/* HeuristicLab
     3 * Copyright (C) 2002-2013 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
     22using System.Drawing;
     23using HeuristicLab.Common;
    224using HeuristicLab.Core;
    3 using System.Drawing;
    4 using System;
    5 using System.Collections.Generic;
    6 using System.Linq;
    7 using System.Text;
    825
    9 namespace HeuristicLab.DataPreprocessing
    10 {
     26namespace HeuristicLab.DataPreprocessing {
    1127  [Item("Transformation", "Represents the transformation grid.")]
    12   public class TransformationContent : Item
    13   {
     28  public class TransformationContent : Item {
    1429
    1530    private readonly ITransformationLogic transformationLogic;
    16     public TransformationContent(ITransformationLogic theTransformationLogic)
    17     {
     31    public TransformationContent(ITransformationLogic theTransformationLogic) {
    1832      transformationLogic = theTransformationLogic;
    1933    }
    2034
    21     public ITransformationLogic TransformationLogic
    22     {
    23       get
    24       {
     35    public ITransformationLogic TransformationLogic {
     36      get {
    2537        return transformationLogic;
    2638      }
     
    2840
    2941    public TransformationContent(TransformationContent content, Cloner cloner)
    30       : base(content, cloner)
    31     {
     42      : base(content, cloner) {
    3243
    3344    }
    3445
    35     public static new Image StaticItemImage
    36     {
     46    public static new Image StaticItemImage {
    3747      get { return HeuristicLab.Common.Resources.VSImageLibrary.Method; }
    3848    }
    3949
    40     public override IDeepCloneable Clone(Cloner cloner)
    41     {
     50    public override IDeepCloneable Clone(Cloner cloner) {
    4251      return new TransformationContent(this, cloner);
    4352    }
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/TransformationLogic.cs

    r10537 r10539  
    1 
     1#region License Information
     2/* HeuristicLab
     3 * Copyright (C) 2002-2013 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
    222using System;
    323namespace HeuristicLab.DataPreprocessing {
     
    1535    }
    1636
    17     public void deleteRowsWithMissingValuesGreater(double percent) {
     37    public void DeleteRowsWithMissingValuesGreater(double percent) {
    1838      for (int i = 0; i < preprocessingData.Rows; ++i) {
    1939        int missingCount = statisticsLogic.GetRowMissingValueCount(i);
     
    2545    }
    2646
    27     public void deleteColumnsWithMissingValuesGreater(float percent) {
     47    public void DeleteColumnsWithMissingValuesGreater(float percent) {
    2848      for (int i = 0; i < preprocessingData.Columns; ++i) {
    2949        int missingCount = statisticsLogic.GetMissingValueCount(i);
     
    3555    }
    3656
    37     public void deleteColumnsWithVarianceSmaller(double variance) {
     57    public void DeleteColumnsWithVarianceSmaller(double variance) {
    3858      for (int i = 0; i < preprocessingData.Columns; ++i) {
    3959        if (preprocessingData.IsType<double>(i) || preprocessingData.IsType<DateTime>(i)) {
Note: See TracChangeset for help on using the changeset viewer.