Lines Matching refs:column
36 columns = [Column(LiteralResult(),
39 Column(AmeanResult(),
41 Column(StdResult(),
43 Column(CoeffVarResult(),
45 Column(NonEmptyCountResult(),
47 Column(AmeanRatioResult(),
49 Column(AmeanRatioResult(),
51 Column(GmeanRatioResult(),
53 Column(PValueResult(),
552 """A class that represents the format of a column."""
720 width: Optional specifier to make a column narrower than the usual width.
721 The usual width of a column is the max of all its cells widths.
750 class Column(object):
751 """Class representing a column in a table.
776 This class takes in a table generated by TableGenerator and a list of column
785 columns: A list of column containing what to produce and how to format it.
810 for column in self._columns:
813 if column.result.NeedsBaseline():
815 column.result.Compute(cell, values, baseline)
816 column.fmt.Compute(cell)
819 self._table_columns.append(column)
821 column.result.Compute(cell, values, baseline)
822 column.fmt.Compute(cell)
825 self._table_columns.append(column)
842 for column in self._columns:
845 column.result.Compute(cell, ['Fail'], baseline)
846 column.fmt.Compute(cell)
849 self._table_columns.append(column)
853 """Generate Column name at the top of table."""
858 for column in self._table_columns:
861 if column.name:
862 cell.string_value = column.name
864 result_name = column.result.__class__.__name__
865 format_name = column.fmt.__class__.__name__
1153 Column(AmeanResult(), Format()),
1154 Column(AmeanRatioResult(), PercentFormat()),
1155 Column(AmeanRatioResult(), ColorBoxFormat()),
1188 Column(LiteralResult(), Format(), 'Literal'), Column(
1189 AmeanResult(), Format()), Column(StdResult(), Format()), Column(
1190 CoeffVarResult(), CoeffVarFormat()), Column(
1192 Column(AmeanRatioResult(), PercentFormat()), Column(
1193 AmeanRatioResult(), RatioFormat()), Column(GmeanRatioResult(),
1194 RatioFormat()), Column(