I have a table with many columns, can I convert this table to represent the same information but with the column headers placed at rows. Example try to convert this table:
{| class="wikitable"
! scope="col"| Benchmark
! scope="col"| Total number of transactions
! scope="col"| Device data reads (DMA)
! scope="col"| Device data writes (DMA)
! scope="col"| Uncacheable data reads
! scope="col"| Uncacheable data writes
! scope="col"| Uncacheable instruction fetches
! scope="col"| Data read transactions
! scope="col"| Data read misses
! scope="col"| Data read hit-ratio
! scope="col"| Instruction fetch transactions
! scope="col"| Instruction fetch misses
! scope="col"| Instruction fetch hit-ratio
! scope="col"| Data write transactions
! scope="col"| Data write misses
! scope="col"| Data write hit-ratio
! scope="col"| Copy-back transactions
|-
! scope="row"| Vortex
| 572369
| 0
| 0
| 0
| 0
| 0
| 193418
| 43473
| 77.52%
| 261195
| 103199
| 60.49%
| 117756
| 83646
| 28.97%
| 0
|-
! scope="row"| Equake
|482932
|0
|0
|0
|0
|0
|128014
|16909
|86.79%
|281793
|58486
|79.25%
|73125
|14086
|80.74%
|0
|-
! scope="row"| Parser
|571505
|0
|0
|0
|0
|0
|224470
|26972
|87.98%
|224082
|14404
|93.57%
|122953
|50771
|58.71%
|0
|}
Into something like:
{| class="wikitable"
! scope="col"| Benchmark
! scope="col"| Vortex
! scope="col"| Equake
! scope="col"| Parser
|-
.
.
.
Is it possible that a template could do this?