25#include <plotly_plotter/data_table.h>
42 const std::vector<measurer::Measurement>& measurements,
43 const std::vector<param::ParameterName>& parameter_names)
44 -> plotly_plotter::data_table;
55 const std::vector<measurer::Measurement>& measurements,
56 const std::vector<param::ParameterName>& parameter_names,
57 const CustomOutputName& output_name)
58 -> std::pair<plotly_plotter::data_table, bool>;
68 const std::vector<measurer::Measurement>& measurements,
69 const std::vector<param::ParameterName>& parameter_names)
70 -> plotly_plotter::data_table;
79 const std::vector<measurer::Measurement>& measurements)
80 -> plotly_plotter::data_table;
Definition of CustomOutputName class.
Definition of Measurement class.
auto create_data_table_with_mean_time(const std::vector< measurer::Measurement > &measurements, const std::vector< param::ParameterName > ¶meter_names) -> plotly_plotter::data_table
Create a data table with the mean of processing time.
auto create_data_table_for_cdf_plot(const std::vector< measurer::Measurement > &measurements) -> plotly_plotter::data_table
Create a data table for cumulative distribution functions.
auto create_data_table_with_custom_output(const std::vector< measurer::Measurement > &measurements, const std::vector< param::ParameterName > ¶meter_names, const CustomOutputName &output_name) -> std::pair< plotly_plotter::data_table, bool >
Create a data table with a custom output.
auto create_data_table_with_all_time(const std::vector< measurer::Measurement > &measurements, const std::vector< param::ParameterName > ¶meter_names) -> plotly_plotter::data_table
Create a data table with all samples of processing time.
Namespace of stat_bench source codes.
Definition of ParameterName class.