README.md

CMISTR

Lifecycle:
experimental CRAN
status

The goal of CMISTR is to allow CMIST assessments in R instead of relying on the MS Excel

Installation

Until this package is released on CRAN, please install with:

devtools::install_github("https://github.com/remi-daigle/CMISTR")

Example

This is a basic example which shows you the package workflow:

library(CMISTR)
set.seed(11)
risks <- sample(x = c(1:3),size = 17,replace = TRUE)
uncertainties <- sample(x = c(1:3),size = 17,replace = TRUE)
score <- CMISTScore(risks,uncertainties)
score
#>   CMIST_Score CMIST_Upper CMIST_Lower Likelihood_Score Likelihood_Upper
#> 1    3.402167    4.166667    2.638889         1.569375            1.875
#>   Likelihood_Lower Impact_Score Impact_Upper Impact_Lower
#> 1             1.25     2.167889     2.444444     1.888889


remi-daigle/CMISTR documentation built on May 17, 2023, 6:03 a.m.