Jump to content

Template:Wins-losses-pct in table/doc

From Wikipedia, the free encyclopedia

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]
{| 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]
This is the TemplateData for this template used by TemplateWizard, VisualEditor and other tools. See a monthly parameter usage report for Template:Wins-losses-pct in table in articles based on its TemplateData.

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.

Template parameters

ParameterDescriptionTypeStatus
Wins1

The amount of wins to show.

Example
56
Numberrequired
Losses2

The amount of losses to show.

Example
52
Numberrequired
Ties3

The amount of ties to show.

Numberoptional


See also

[edit]

Notes

[edit]
  1. ^ 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%".