knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

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


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