ev {PRA} | R Documentation |
Earned Value (EV).
Description
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")
[Package PRA version 0.2.0 Index]