Current section
Files
Jump to
Current section
Files
priv/templates/partials/data_table.html.eex
<h3>Data Table</h3>
<table>
<thead>
<tr>
<th class="text-left">Name</th>
<th>Iterations per Second</th>
<th>Average</th>
<th>Deviation</th>
<th>median</th>
<th>minimum</th>
<th>maximum</th>
<th>Sample size</th>
</tr>
</thead>
<tbody>
<%= for {name, %{run_time_statistics: statistics}} <- statistics do %>
<tr>
<%= case Keyword.get(options, :path_information) do %>
<% {base_name, input_name} -> %>
<td class="text-left"><a href="<%= relative_file_path(base_name, [input_name, name]) %>"><%= name %></a></td>
<% nil -> %>
<td class="text-left"><%= name %></td>
<% end %>
<td><%= format_count statistics.ips, units.ips %></td>
<td><%= format_duration statistics.average, units.run_time %></td>
<td><%= format_percent statistics.std_dev_ratio %></td>
<td><%= format_duration statistics.median, units.run_time %></td>
<td><%= format_duration statistics.minimum, units.run_time %></td>
<td><%= format_duration statistics.maximum, units.run_time %></td>
<td><%= statistics.sample_size %></td>
</tr>
<% end %>
</tbody>
</table>