Free cookie consent management tool by TermsFeed Policy Generator

Changes between Initial Version and Version 1 of Ticket #3040, comment 2


Ignore:
Timestamp:
11/22/19 10:14:12 (5 years ago)
Author:
pfleck
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3040, comment 2

    initial v1  
    77 - Consider adding generic vector capabilities to IDataset that only allows double, string, DateTime.
    88 - Consider changing `IList` within the `Dataset` to a covariant alternative (non-generic `IReadOnlyList` does not exist, however). Currently the type must be exactly `IReadOnlyList<double>`, otherwise the invariant `IList<T>` is not a subtype of `IList<IList<double>>` for instance.
     9 - Each DataAnalysis algorithm should check on it's own, whether the types of the allowed input variables is compatible. For instance, the LR would only allow double-values, whereas SymReg also supports string-variables (as factor variables) and double-vector-variables.