Skip to contents

Estimates the total overs available in a Test match based on duration.

Usage

estimate_test_total_overs(days = 5)

Arguments

days

Integer. Number of days in the Test match (4 or 5).

Value

Integer. Total scheduled overs for the match.

Examples

estimate_test_total_overs(5)  # 450 (5 * 90)
#> [1] 450
estimate_test_total_overs(4)  # 392 (4 * 98)
#> [1] 392