pub const EX_0060: &str = r#"
┌────────────────────────────────────────────────────────────┐
│ Sell options │
├─────────────────────────────────╥───────────────┬──────────┼───────────────┐
│ Applicant age ║ <25 │ [25..60] │ >60 │
├─────────────────────────────────╫──────┬────────┼──────────┼────────┬──────┤
│ Medical history ║"good"│ "bad" │ - │ "good" │"bad" │
╞═════════╤═══════════════════════╬══════╪════════╪══════════╪════════╪══════╡
│ Sell │ Applicant risk rating ║"Low" │"Medium"│ "Medium" │"Medium"│"High"│
│ ├───────────────────────╫──────┼────────┼──────────┼────────┼──────┤
│ options │ Special Discount ║ 10 │ 5 │ 5 │ 5 │ 0 │
╞═════════╧═══════════════════════╬══════╪════════╪══════════╪════════╪══════╡
│ Additional acceptance ║ No │ No │ No │ No │ Yes │
├─────────────────────────────────╫──────┼────────┼──────────┼────────┼──────┤
│ Reference ║ Rf 0 │ Rf 1 │ Rf 2 │ Rf 3 │ Rf 4 │
├─────────────────────────────────╫──────┼────────┼──────────┼────────┼──────┤
│ U ║ 1 │ 2 │ 3 │ 4 │ 5 │
└─────────────────────────────────╨──────┴────────┴──────────┴────────┴──────┘
% { Applicant age: 20, Medical history: "good" }, {Applicant risk rating: "Low", Special Discount: 10}
% { Applicant age: 24, Medical history: "bad" }, {Applicant risk rating: "Medium", Special Discount: 5}
% { Applicant age: 25, Medical history: "good" }, {Applicant risk rating: "Medium", Special Discount: 5}
% { Applicant age: 25, Medical history: "bad" }, {Applicant risk rating: "Medium", Special Discount: 5}
% { Applicant age: 60, Medical history: "good" }, {Applicant risk rating: "Medium", Special Discount: 5}
% { Applicant age: 60, Medical history: "bad" }, {Applicant risk rating: "Medium", Special Discount: 5}
% { Applicant age: 61, Medical history: "good" }, {Applicant risk rating: "Medium", Special Discount: 5}
% { Applicant age: 61, Medical history: "bad" }, {Applicant risk rating: "High", Special Discount: 0}
% { Applicant age: 61, Medical history: "well" }, null
"#;
Expand description
Vertical decision table,
ORIENTATION: **vertical**
INFORMATION ITEM NAME: yes
OUTPUT-LABEL: yes
INPUT-OUTPUT-VALUES: no
OUTPUT: multiple
ANNOTATIONS: yes