Learn R Programming

logconPH (version 1.5)

dLC: Density estimates from a log concave fit

Description

Returns the the estimated density from a log concave fit

Usage

dLC(x, fit, covars)

Arguments

x
A vector of numeric values for which the estimated density will be calculated
fit
Log concave fit (from the logconcave() function)
covars
A matrix of covariate values. Number of columns must match number in original fit

Examples

Run this code
  fit = logconcave(rnorm(500) )
  # Fits a log concave estimator to an uncensored sample
    
  dLC(0, fit)  						
  # Estimates the density at the true mode
  
  simData <- simPH_Censored()
  # Simulates current status data from a CoxPH model
  
  fit <- logconcave(simData$times, simData$x)
  # Fits coxPH model
  
  dLC(1, fit, covars = c(0,0))
  # Estimates the baseline density at t = 1

Run the code above in your browser using DataLab