Coder Social home page Coder Social logo

mnarmple's Introduction

#mnarmple: A package for calculating the MNAR MPLE likelihood for the cause specific Cox model with missing failure type

The mnarmple package calculates the negative log likelihood of the MNAR MPLE likelihood equation for a given set of data and parameters, and can be used with tho optim() function to get parameter estimates based on maximizing the log-likelhood. It also includes a function that can be used with the boot() function from the package boot.

##Installation

devtools::install_github("blangworthy/mnarmple")
library(mnarmple)

##Examples

library(gtools)
library(data.table)
library(splines2)
library(fastDummies)
#devtools::install_github("blangworthy/mnarmple")
library(mnarmple)
#####Example without competing risks
###In this example we simulate data with two different failure types, where failure type is missing for some subjects, and the missingness is not at random. We then use the likesplinefunctionmnarfixed() to estimate the MNAR MPLE. There is a single covariate, X, which affects the hazard for the second failure type, but not the first. X also has an effect on the probability of failure type being missing, along with the actual failure type (hence missing not at random). The true baseline hazard ratio is based on two Weibull distributions, and the baseline hazard ratio is estimated with a cubic spine.

n <- 5000 # sample size
###Single binary covariate
x <- rbinom(n,1,0.5)
ncause <- 2

###True Cox model log hazard ratios
b11 <- 0
b21 <- 0.69
###Cause specific failure time
t1 <- rweibull(n,shape = 1,scale = exp(-b11/1*x))
t2 <- rweibull(n,shape = 1.5,scale = exp(-b21/1.5*x))


tall <- cbind(t1,t2)
####minimum time and cause indicator
t <- apply(tall,1,min)
cause <- apply(tall,1,which.min)

####censoring time
c <- rbeta(n,shape1=0.1,shape2 = 3)*5

###observied time and censoring indicator
combined <- cbind(t,c)
z <- apply(combined,1,min)
cens <- apply(combined,1,function(x)ifelse(which.min(x)==1,1,0))

###True missingness model coefficients
ax1 <- 0.5
ay1 <- -0.5
ay2 <- 0.5
###Indicator for if cause is observed based on logit model (MNAR if ay1 doesn't equal ay2)
prob <- x*ax1 + as.numeric(cause==1)*ay1 + as.numeric(cause==2)*ay2
o <- rbinom(n,1,gtools::inv.logit(prob))


###Basis function to estimate baseline hazard ratio as cubic spline
basis <- splines2::bSpline(z,knots =quantile(z,c(1/3,2/3)),degree = 3 ,intercept = T)
splinevars <- paste0("bas",1:ncol(basis))
colnames(basis) <- splinevars

###Create 'observed' data
estdat <- data.table(x,z,cause,cens,o,basis)
estdat$cause <- estdat$cause *estdat$o

###Supplied starting parameters
paramszero <- c(0,0,0,rep(1,ncol(basis)))
###For missingness model parameters for the ith covariate should be named "axi" (does not include MNAR parameters)
###For cox model, parameter for the ith cause and jth covariate  should be named "bij"
###For baseline hazard ratio for the ith cause and jth spline basis value the parameter should be named "basij"
names(paramszero) <- c("ax1","b11","b21",paste0("bas2",1:ncol(basis)))

estszero <- optim(paramszero,method = "Nelder-Mead",fn = likesplinefunctionmnarfixed,dat = estdat,mnarparams=c(0.5,-0.5),timevar = "z",xvarsmiss="x",xvarscox="x",splinevars=splinevars,ncause=ncause)

mnarmple's People

Contributors

blangworthy avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.