sv {PRA} | R Documentation |
Schedule Variance (SV).
Description
Schedule Variance (SV).
Usage
sv(ev, pv)
Arguments
ev |
Earned Value. |
pv |
Planned Value. |
Value
The function returns the Schedule Variance (SV) of work completed.
Examples
bac <- 100000
schedule <- c(0.1, 0.2, 0.4, 0.7, 1.0)
time_period <- 3
pv <- pv(bac, schedule, time_period)
actual_per_complete <- 0.35
ev <- ev(bac, actual_per_complete)
sv <- sv(ev, pv)
cat("Schedule Variance (SV):", sv, "\n")
[Package PRA version 0.2.0 Index]