Changes between Initial Version and Version 1 of Ticket #3040, comment 2
- Timestamp:
- 11/22/19 10:14:12 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3040, comment 2
initial v1 7 7 - Consider adding generic vector capabilities to IDataset that only allows double, string, DateTime. 8 8 - 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.