Table with merged runsets #1174
-
|
Hi, I have a question. I've generated several tables, one for each runset. I'd now like to generate a summary table that sums the data from all the runsets. Is this possible? I've just tried launching the tool simply with the command "./table-generator *Runset1.xml.bz2 *Runset2.xml.bz2 *Runset3.xml.bz2", but it generates a table that is divided into subtables, one for each runset, so it doesn't sum the data from the other runsets. I'd like to generate a table like this: Is this possible? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Yes, this is of course a common use case and possible. You need to create a table definition that describes the layout of the table for |
Beta Was this translation helpful? Give feedback.
Yes, this is of course a common use case and possible. You need to create a table definition that describes the layout of the table for
table-generatorand use a<union>tag for each group of result files that you want to combine. In the easiest case it can be something as short as<table><union><result filename="*.xml.bz2"/></union></table>. Let me know if you need more details than explained in the documentation.