This service allows you to create a 2D table of values with named rows and columns. Currently, the output file format is CSV format. This service can be used as a standard service defined in a module's AXL or as a singleton to have a unique instance for all modules.
You just need to create one or more rows and one or more columns, then assign values to each [row,column], and finally call the writeFile() method to generate a .csv file.
Example .csv file:
In Excel (or another spreadsheet program), you get this table:
| Results_Example3 | Iteration 1 | Iteration 2 | Iteration 3 |
|---|---|---|---|
| Nb de Fissions | 36 | 0 | 85 |
| Nb de Collisions | 29 | 84 | 21 |
This subsection introduces this service. Not all use cases will be covered, so it is recommended to view the documentation for the ISimpleTableOutput interface to fully exploit this service (notably the multi-process management aspect, which does not have an example).
Table of Contents for this subsection: