#region License Information
/* HeuristicLab
* Copyright (C) 2002-2016 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;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using HeuristicLab.Common;
using HeuristicLab.Core;
using HeuristicLab.Data;
using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
namespace HeuristicLab.Problems.DataAnalysis {
[Item("ModifiableDataset", "Represents a dataset containing data that should be analyzed, which can be modified by adding or replacing variables and values.")]
[StorableClass]
public sealed class ModifiableDataset : Dataset, IStringConvertibleMatrix {
[StorableConstructor]
private ModifiableDataset(bool deserializing) : base(deserializing) { }
private ModifiableDataset(ModifiableDataset original, Cloner cloner) : base(original, cloner) {
var variables = variableValues.Keys.ToList();
foreach (var v in variables) {
var type = GetVariableType(v);
if (type == typeof(DateTime)) {
variableValues[v] = GetDateTimeValues(v).ToList();
} else if (type == typeof(double)) {
variableValues[v] = GetDoubleValues(v).ToList();
} else if (type == typeof(string)) {
variableValues[v] = GetStringValues(v).ToList();
} else {
throw new ArgumentException("Unsupported type " + type + " for variable " + v);
}
}
}
public override IDeepCloneable Clone(Cloner cloner) { return new ModifiableDataset(this, cloner); }
public ModifiableDataset() : base() { }
public ModifiableDataset(IEnumerable variableNames, IEnumerable variableValues) : base(variableNames, variableValues) { }
public void ReplaceRow(int row, IEnumerable