R/survMisc_package.R

#' @name survMisc_package
#' @title Miscellaneous Functions for Survival Analysis
#' @description Miscellaneous Functions for Survival Analysis
#' 
#' @description
#' \tabular{ll}{
#'  Package: \tab survMisc\cr
#'  Type: \tab Package\cr
#'   Version: \tab 0.5.5 \cr
#'  Date: \tab 2018-07-03\cr
#' License: \tab GPL (>= 2) \cr
#' LazyLoad: \tab yes
#' }
#' A collection of functions for the analysis of survival data. These
#' extend the methods already available in \code{package:survival}.
#' \cr
#' The intent is to generate a workspace for some of the common tasks
#' arising in survival analysis.
#'  \cr \cr
#' There are references in many of the functions to the textbooks:
#' \tabular{cl}{
#'  \bold{K&M} \tab Klein J, Moeschberger M (2003). 
#'                  \emph{Survival Analysis}, 2nd edition. \cr
#'             \tab New York: Springer. 
#'                  \doi{10.1007/b97377} \cr
#'  \bold{T&G} \tab Therneau TM, Grambsch PM (2000). 
#'                  \emph{Modeling Survival Data: Extending the Cox Model}. \cr
#'             \tab New York: Springer. 
#'                  \doi{10.1007/978-1-4757-3294-8}
#' }
#' 
#' \subsection{Notes for developers}{
#'  \itemize{
#'   \item This package should be regarded as 'in development' until
#' release 1.0, meaning that there may be changes to certain function
#' names and parameters, although I will try to keep this to a minimum.
#' As such it is recommended that other packages do \emph{not} depend on or import from this
#' one until at least version 1.0.
#'  \item Naming tends to follow the \strong{camelCase} convention; 
#'   variables within functions are typically alphanumeric e.g. \code{a1 <- 1}.
#'  }
#' }
#' For bug reports, feature requests or suggestions for improvement,
#' please try to submit to \href{https://github.com/dardisco/survMisc/issues}{github}.
#' Otherwise email me at the address below.
#' 
#' @aliases survMisc
#' @docType package
#' @author Chris Dardis \email{christopherdardis@@gmail.com}
#' 
#' @keywords package
#' @concept survival
#' 
#' @importFrom graphics plot abline arrows grid mtext points title segments
#' @importFrom grDevices dev.new graphics.off
#' @importFrom utils head tail combn data packageVersion
#' @importFrom stats anova formula as.formula is.empty.model model.frame model.matrix model.response printCoefmat predict runif pchisq pnorm qchisq qnorm terms update
#' 
#' @import knitr
#' @import survival
#' @import ggplot2
#' 
## the following are imported for their datasets:
#' @import KMsurv
#' @import km.ci
#' 
#' @importFrom data.table as.data.table data.table set setkey setattr setcolorder setnames ':=' copy rbindlist
#' @importFrom zoo na.locf.default
#' @importFrom grid unit.pmax
#' @importFrom gridExtra grid.arrange
#' @importFrom xtable xtable print.xtable
#' 
NULL
## KMsurv
## km.ci

Try the survMisc package in your browser

Any scripts or data that you put into this service are public.

survMisc documentation built on April 7, 2022, 5:06 p.m.