Learn R Programming

dMrs

Table of Contents

Installation

To install the package, run the following code for required dependencies and package.

all_packs = as.character(installed.packages()[,1])
req_packs = c("devtools","Rcpp","RcppArmadillo",
	"Rmpfr","copula","ggplot2","viridis","smarter","dMrs")
run = 0

for(pack in req_packs){
	
	if( pack %in% all_packs ){
		library(pack,character.only = TRUE)
		next
	}
	
	if( pack == "smarter" ){
		devtools::install_github("pllittle/smarter")
		
	} else if( pack == "dMrs" ){
		devtools::install_github("reubenadat/dMrs")
		
	} else {
		install.packages(pack)
		
	}
	run = 1
	
}

if( run == 1 ) stop("Re-run this code")

Check out the vignette!

vignette("dMrs")

Package Features

The package's main functions include

  1. Simulation: Varying underlying shape, scale, dependency parameters.
  2. Optimization: Grid search and BFGS
  3. Predicting survival
  4. Matching working dataset subjects with reference dataset on age, sex, time period.

Citation

Not done yet

Copy Link

Version

Install

install.packages('dMrs')

Monthly Downloads

203

Version

1.0.0

License

GPL (>= 3)

Maintainer

Paul Little

Last Published

January 21st, 2025

Functions in dMrs (1.0.0)

opt_sum

opt_sum
refData_match

refData_match
run_analyses

run_analyses
plot_SURVs

plot_SURVs