1 %> @brief Comparison and p-values tables
3 %> Compares performance estimations between several system set-ups
5 %> @todo implement the params GUI
8 %> =1. Whether to generate the p-values tables
11 %> ={
'rates',
'times3'}
12 names = {
'rates',
'times3'}
17 %> Maximum number of table rows
23 o.classtitle = '1D comparison table';
24 o.inputclass = 'soitem_sovalues';
29 methods(Access=protected)
30 function out = do_use(o, obj)
34 r.dimspec = {[0, 0], [1, 2]};
37 r.vectorcomp = o.vectorcomp;
38 r.maxrows = o.maxrows;
40 out.html = [o.get_standardheader(obj), r.get_html_tables(obj.sovalues)];
41 out.title = obj.get_description();
46 function v = some_items(o, nar, choiceidx)
52 share2 = 1-A; % percentages of items destinated for the first items and items around choiceidx respectively
54 nit = min(o.maxrows, nar);
56 i1 = floor(choiceidx-share2/2*nit);
57 i2 = ceil(choiceidx+share2/2*nit);
Comparison and p-values tables.
Property flag_ptable
=1. Whether to generate the p-values tables
Comparison and p-values tables.
Generated by irreport, carries HTML contents.
Paired Vector Comparer base class.
Vector Comparer - paired t-test right tail.
Base for all reports that operate on a soitem object.