https://github.com/cran/coxrobust
Raw File
Tip revision: bd29efa9d2c3c990d3b2daddcad04ac1c25d4bd0 authored by Shana Scogin on 06 April 2022, 13:02:33 UTC
version 1.0.1
Tip revision: bd29efa
coxrobust.R
# SRS note 3/31/2022: Made this file for roxygen imports.
# I thnk the man file coxr had intro info that should be
# merged with this at some point

#' coxrobust Overview
#'
#' This package currently has one main function that fits a robustly proportional
#' hazards regression model
#'
#' @section Main Functions:
#' \itemize{
#' \item \code{coxr()}
#' \item \code{gen_data()}
#' \item \code{plot.coxr()}
#' \item \code{predict.coxr()}
#' }
#'
#' @docType package
#' @name coxrobust
NULL
#> NULL

#' @importFrom survival Surv
NULL

#' @importFrom graphics close.screen lines mtext par
#' points screen split.screen title
NULL

#' @importFrom stats model.extract model.matrix pchisq pnorm
#' quantile rexp rnorm
NULL
#> NULL
back to top