-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.Rmd
57 lines (43 loc) · 1.53 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# pmev
<!-- badges: start -->
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)
[![CRAN status](https://www.r-pkg.org/badges/version/pmev)](https://CRAN.R-project.org/package=pmev)
<!-- badges: end -->
The goal of pmev is to implement project management tracking metrics as outlined in the Project Management Body of Knowledge (PMBOK) manual which can be found \href{https://www.pmi.org/pmbok-guide-standards/foundational/pmbok}{here}.
## Installation
You can install the development version of `pmev` using either:
``` r
# install.packages("pmev")
# Or the development version at
# install.packages("devtools")
# devtools::install_github("david-hammond/pmev")
```
## Example
```{r example}
library(pmev)
data(project)
earnedvalue <- ev$new(start = project$start,
end = project$end,
progress = project$progress,
planned_cost = project$planned_cost,
project_value = 150000,
cost_to_date = 10000,
date = "2024-07-03")
print(earnedvalue$earned_value)
```
The Earned Value can then be plotted in the following way.
```{r, message = FALSE}
plot(earnedvalue)
```