Template:Wins-losses-pct in table
Description
[edit]This template produces three or four wikitable columns that represent wins, losses, optionally ties, and a winning percentage as follows:
<wins> || <losses> || <winning percentage>
or
<wins> || <losses> || <ties> || <winning percentage>
where wins
comes from parameter 1 to this template, losses
comes from parameter 2, ties
comes from parameter 3 if present, and <winning percentage>
is automatically computed based on parameters 1 and 2 and 3 if present.[1]
Winning percentage is calculated as a three-decimal place value between .000 and 1.000. The value is wins
/ (wins
+ losses
) for 2 parameters, or (wins
+ (ties
/ 2)) / (wins
+ losses
+ ties
) for 3 parameters. If the total of the parameters is zero, the percentage is displayed as "–".
Examples
[edit]{{WinLossPct|3|0}}
produces 3 || 0 || 1.000{{WinLossPct|6|9}}
produces 6 || 9 || .400{{WinLossPct|0|5}}
produces 0 || 5 || .000{{WinLossPct|0|0}}
produces 0 || 0 || –{{WinLossPct|5|3|2}}
produces 5 || 3 || 2 || .600
{| class=wikitable
! Team !! Wins !! Losses !! Percent
|-
| Bluebirds || {{WinLossPct|6|9}}
|-
| Blackbirds || {{WinLossPct|4|3}}
|}
produces:
Team | Wins | Losses | Percent |
---|---|---|---|
Bluebirds | 6 | 4 | .600 |
Blackbirds | 4 | 6 | .400 |
and
{| class=wikitable
! Team !! Wins !! Losses !! Ties !! Percent
|-
| Lemurs || {{WinLossPct|3|6|1}}
|-
| Ocelots || {{WinLossPct|6|3|1}}
|}
produces:
Team | Wins | Losses | Ties | Percent |
---|---|---|---|---|
Lemurs | 3 | 6 | 1 | .350 |
Ocelots | 6 | 3 | 1 | .650 |
TemplateData
[edit]TemplateData for Wins-losses-pct in table
This template produces three or four wikitable columns that represent wins, losses, optionally ties, and a winning percentage.
Parameter | Description | Type | Status | |
---|---|---|---|---|
Wins | 1 | The amount of wins to show.
| Number | required |
Losses | 2 | The amount of losses to show.
| Number | required |
Ties | 3 | The amount of ties to show. | Number | optional |
See also
[edit]Notes
[edit]- ^ This is what is colloquially referred to as a "percentage" in sports, though it is not mathematically accurate. 6 wins and 6 losses produces ".500", not "50%".