Learn R Programming

PRA (version 0.3.0)

ev: Earned Value (EV).

Description

Earned Value (EV).

Usage

ev(bac, actual_per_complete)

Value

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

Arguments

bac

Budget at Completion (BAC) (total planned budget).

actual_per_complete

Actual work completion percentage.

Examples

Run this code
# Set the BAC and actual % complete for a toy project.
bac <- 100000
actual_per_complete <- 0.35

# Calculate the EV and print the results.
ev <- ev(bac, actual_per_complete)
cat("Earned Value (EV):", ev, "\n")

Run the code above in your browser using DataLab