Changes between Version 4 and Version 5 of Documentation/FAQ
- Timestamp:
- 02/17/11 09:48:33 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Documentation/FAQ
v4 v5 5 5 6 6 * S. Wagner, Heuristic Optimization Software Systems - Modeling of Heuristic Optimization Algorithms in the HeuristicLab Software Environment, PhD Thesis, Institute for Formal Models and Verification, Johannes Kepler University Linz, Austria, 2009. 7 8 === Data-analysis import file format === 9 Your data file must be available in form of a table. HeuristicLab does not support sparse matrix formats as used for instance by libSVM. To import your data into HeuristicLab you must prepare your data file to follow a comma separated values format (CSV). On import HeuristicLab tries to guess which separator character is used. Allowed separator characters are ';', ',', 'Space' and 'Tab'. The values should be real-valued format and use a period ('.') as decimal separator. German users can also use the comma (',') character as decimal separator, but of course in this case ',' is not allowed as separator character (use either ';', 'Space' or 'TAB'). The first line of the CSV file can contain variable names. 10 11 Examples for valid HeuristicLab data-analysis files: 12 {{{ 13 x01 x02 x03 y 14 1.0 2.0 3.0 0.0 15 0.0 1.0 2.0 1.0 16 ... 17 }}} 18 19 {{{ 20 x01 x02 x03 y 21 1,0 2,0 3,0 0,0 22 0,0 1,0 2,0 1,0 23 ... 24 }}}