Skip to contents

Earned Value (EV).

Usage

ev(bac, actual_per_complete)

Arguments

bac

Budget at Completion (total planned budget).

actual_per_complete

Actual work completion percentage.

Value

The function returns the Earned Value (EV) of work completed.

Examples

bac <- 100000
actual_per_complete <- 0.35

ev <- ev(bac, actual_per_complete)
cat("Earned Value (EV):", ev, "\n")
#> Earned Value (EV): 35000