Files
beflask/app/results/templates/_table_datasets.html

30 lines
1.1 KiB
HTML

<table id="report-table"
class="table table-striped table-hover table-bordered bg-light"
data-toggle="table"
data-sticky-header="true"
data-sticky-header-offset-y="50"
data-sortable="true">
<thead>
<tr class="bg-primary text-white">
<th class="text-center">Dataset</th>
<th class="text-center">Samples</th>
<th class="text-center">Features</th>
<th class="text-center">Cont. Feat.</th>
<th class="text-center">Classes</th>
<th class="text-center">Balance</th>
</tr>
</thead>
<tbody>
{% for dataset in datasets %}
<tr>
<td>{{ dataset.dataset }}</td>
<td class="text-end">{{ "{:,}".format(dataset.samples) }}</td>
<td class="text-end">{{ "{:,}".format(dataset.features) }}</td>
<td class="text-end">{{ dataset.cont_features }}</td>
<td class="text-end">{{ dataset.classes }}</td>
<td>{{ dataset.balance }}</td>
</tr>
{% endfor %}
</tbody>
</table>