dsntk-examples 0.3.0

ÐecisionToolkit | Examples
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
```text
┌───┬────────────┬───────╥──────────┬──────────╥───────────────┬───────────┐
│ U │  Customer  │ Order ║ Discount │ Priority ║  Description  │ Reference │
╞═══╪════════════╪═══════╬══════════╪══════════╬═══════════════╪═══════════╡
│ 1 │ "Business" │  <10  ║   0.10   │ "Normal" ║    Desc 1     │   Ref 1   │
├───┼────────────┼───────╫──────────┼──────────╫───────────────┼───────────┤
│ 2 │ "Business" │ >=10  ║   0.15   │  "High"  ║    Desc 2     │   Ref 2   │
├───┼────────────┼───────╫──────────┼──────────╫───────────────┼───────────┤
│ 3 │ "Private"  │   -   ║   0.05   │  "Low"   ║    Desc 3     │   Ref 3   │
└───┴────────────┴───────╨──────────┴──────────╨───────────────┴───────────┘
```

| U |  Customer  | Order | Discount | Priority | Description | Reference |
|:-:|:----------:|:-----:|:--------:|:--------:|:-----------:|:---------:|
|   |    `i`     |  `i`  |   `o`    |   `o`    |     `a`     |    `a`    |
| 1 | "Business" |  <10  |   0.10   | "Normal" |   Desc 1    |   Ref 1   |
| 2 | "Business" | >=10  |   0.15   |  "High"  |   Desc 2    |   Ref 2   |
| 3 | "Private"  |   -   |   0.05   |  "Low"   |   Desc 3    |   Ref 3   |