--- title: "Plot Hazards and Hazard Ratios" author: "Sahir Rai Bhatnagar" date: "`r Sys.Date()`" output: rmarkdown::html_vignette: fig_height: 6 fig_width: 8 toc: yes toc_depth: 4 vignette: > %\VignetteIndexEntry{Plot Hazards and Hazard Ratios} %\VignetteEncoding{UTF-8} %\VignetteEngine{knitr::rmarkdown} bibliography: reference.bib editor_options: chunk_output_type: console --- ```{r setup, include = FALSE} evaluate_vignette <- requireNamespace("visreg", quietly = TRUE) & requireNamespace("splines", quietly = TRUE) knitr::opts_chunk$set( collapse = TRUE, eval = evaluate_vignette, results='hide', fig.show='all', comment = "#>" ) ``` # Introduction In this vignette, we describe the `plot` method for objects of class `singleEventCB` which is obtained from running the `fitSmoothHazard` function. There are currently two types of plots: hazard functions and hazard ratios. We describe each one in detail below. Note that the `plot` method has only been properly tested for `family="glm"`. # Hazard Function The hazard function plots require the [`visreg`](https://cran.r-project.org/package=visreg) package. To illustrate hazard function plots, we will use the breast cancer dataset which contains the observations of 686 women taken from the [`TH.data`](https://cran.r-project.org/package=TH.data) package. This dataset is also available from the `casebase` package. In the following, we will show different hazard functions for different combinations of continuous, binary variables as well as their interactions. ```{r} library(casebase) library(visreg) library(splines) library(ggplot2) data("brcancer") str(brcancer) ``` ## One binary predictor, no interactions We first fit a main effects only model with a spline on `log(time)` and hormonal therapy as main effects. ```{r, results='show'} mod_cb <- fitSmoothHazard(cens ~ ns(log(time), df = 3) + hormon, data = brcancer, time = "time") summary(mod_cb) ``` ### Hazard functions on separate plots All arguments needed for the hazard function plots are supplied through the `hazard.params` argument. This is a named list of arguments which will override the defaults passed to `visreg::visreg()`. The default arguments are `list(fit = x, trans = exp, plot = TRUE, rug = FALSE, alpha = 1, partial = FALSE, overlay = TRUE)`. For example, if you want a 95% confidence band, specify `hazard.params = list(alpha = 0.05)`. For a complete list of options, please see the [`visreg` vignettes](https://cran.r-project.org/package=visreg). We first plot the hazard as a function of time, for `hormon = 0` and `hormon = 1`. This is achieved by specifying the `xvar` argument, as well as the `cond` argument. The `cond` argument must be provided as a named list. Each element of that list specifies the value for one of the terms in the model; any elements left unspecified are filled in with the median/most common category. Note that even though we fit the `log(time)`, we must specify `time` in the `xvar` argument. ```{r, results='hide', fig.show='all'} par(mfrow = c(1, 2)) plot(mod_cb, hazard.params = list(xvar = "time", cond = list(hormon = 0), alpha = 0.05, main = "No Hormonal Therapy Hazard Function")) plot(mod_cb, hazard.params = list(xvar = "time", cond = list(hormon = 1), alpha = 0.05, main = "Hormonal Therapy Hazard Function")) ``` ### Hazard functions on same plots Alternatively, we can plot the hazard functions on the same plot. This is accomplished with the `by` argument: ```{r} plot(mod_cb, hazard.params = list(xvar = "time", by = "hormon", alpha = 0.05, ylab = "Hazard")) ``` Note that if we want to extract the data used to construct the plot, e.g. to create our own, we simply assign the call to `plot` to an object (we may optionally set `plot=FALSE` in the `hazard.params` argument as to not print any plots): ```{r} plot_results <- plot(mod_cb, hazard.params = list(xvar = "time", by = "hormon", alpha = 0.10, ylab = "Hazard", plot = FALSE)) ``` ```{r, results='show'} head(plot_results$fit) ``` ### ggplot2 version The function is flexible because you may leverage `ggplot2` just by specifying `gg = TRUE`, the plot will return a `ggplot` object: ```{r} gg_object <- plot(mod_cb, hazard.params = list(xvar = "time", by = "hormon", alpha = 0.20, # 80% CI ylab = "Hazard", gg = TRUE)) ``` ```{r, results='show'} attr(gg_object,"class") ``` Now we can use it downstream for any plot while leveraging the entire `ggplot2` ecosystem of packages and functions: ```{r} gg_object + theme_minimal()+ theme(legend.position = "bottom") + labs(title = "Casebase") + scale_x_continuous(n.breaks = 10) ``` ## One binary predictor with interaction Next, we fit an interaction model with a time-varying covariate, i.e. to test the hypothesis that the effect of hormonal therapy on the hazard varies with time. ```{r, results='show'} mod_cb_tvc <- fitSmoothHazard(cens ~ hormon * ns(log(time), df = 3), data = brcancer, time = "time") summary(mod_cb_tvc) ``` Now we can easily plot the hazard function over time for each `hormon` group: ```{r} plot(mod_cb_tvc, hazard.params = list(xvar = "time", by = "hormon", alpha = 0.05, ylab = "Hazard")) ``` ## One continuous predictor with interaction Now we fit a model with an interaction between a continuous variable, estrogen receptor (in `fmol`), and time. ```{r, results='show'} mod_cb_tvc <- fitSmoothHazard(cens ~ estrec * ns(log(time), df = 3), data = brcancer, time = "time") summary(mod_cb_tvc) ``` There are now many ways to plot the time-varying effect of estrogen receptor on the hazard function. The default is to plot the 10th, 50th and 90th quantiles of the `by` variable: ```{r} # computed at the 10th, 50th and 90th quantiles of estrec plot(mod_cb_tvc, hazard.params = list(xvar = "time", by = "estrec", alpha = 1, ylab = "Hazard")) ``` We can also show the quartiles of `estrec` by specifying the `breaks` argument. If `breaks` is a single number, that will be the used as the number of breaks: ```{r} # computed at quartiles of estrec plot(mod_cb_tvc, hazard.params = list(xvar = c("time"), by = "estrec", alpha = 1, breaks = 4, ylab = "Hazard")) ``` Alternatively, if `breaks` is a vector, it will be used as the actual values to be used: ```{r} # computed where I want plot(mod_cb_tvc, hazard.params = list(xvar = c("time"), by = "estrec", alpha = 1, breaks = c(3,2200), ylab = "Hazard")) ``` ```{r perspective-plots, eval = FALSE} visreg2d(mod_cb_tvc, xvar = "time", yvar = "estrec", trans = exp, print.cond = TRUE, zlab = "Hazard", plot.type = "image") visreg2d(mod_cb_tvc, xvar = "time", yvar = "estrec", trans = exp, print.cond = TRUE, zlab = "Hazard", plot.type = "persp") # this can also work if 'rgl' is installed # visreg2d(mod_cb_tvc, # xvar = "time", # yvar = "estrec", # trans = exp, # print.cond = TRUE, # zlab = "Hazard", # plot.type = "rgl") ``` ## One continuous predictor with interaction and several other predictors All the examples so far have only included two predictors in the regression equation. In this example, we fit a smooth hazard model with several predictors: ```{r multiple-predictors, results='show'} mod_cb_tvc <- fitSmoothHazard(cens ~ estrec * ns(log(time), df = 3) + horTh + age + menostat + tsize + tgrade + pnodes + progrec, data = brcancer, time = "time") summary(mod_cb_tvc) ``` In the following plot, we show the time-varying effect of `estrec` while controlling for all other variables. By default, the other terms in the model are set to their median if the term is numeric or the most common category if the term is a factor. The values of the other variables are shown in the output: ```{r many-predictors-plot, results='show', R.options=list(max.print=1)} plot(mod_cb_tvc, hazard.params = list(xvar = "time", by = "estrec", alpha = 1, breaks = 2, ylab = "Hazard")) ``` You can of course set the values of the other covariates as before, i.e. by specifying the `cond` argument as a named list to the `hazard.params` argument: ```{r many-predictors-plot-2, results='show', R.options=list(max.print=1)} plot(mod_cb_tvc, hazard.params = list(xvar = "time", by = "estrec", cond = list(tgrade = "III", age = 49), alpha = 1, breaks = 2, ylab = "Hazard")) ``` # Hazard Ratio In this section we illustrate how to plot hazard ratios using the `plot` method for objects of class `singleEventCB` which is obtained from running the `fitSmoothHazard` function. Note that these function have only been thoroughly tested with `family = "glm"`. In what follows, the hazard ratio for a variable $X$ is defined as $$ \frac{h\left(t | X=x_1, \mathbf{Z}=\mathbf{z_1} ; \hat{\beta}\right)}{h(t | X=x_0, \mathbf{Z}=\mathbf{z_0} ; \hat{\beta})} $$ where $h(t|\cdot;\hat{\beta})$ is the hazard rate as a function of the variable $t$ (which is usually time, but can be any other continuous variable), $x_1$ is the value of $X$ for the exposed group, $x_0$ is the value of $X$ for the unexposed group, $\mathbf{Z}$ are other covariates in the model which are equal to $\mathbf{z_1}$ in the exposed and $\mathbf{z_0}$ in the unexposed group, and $\hat{\beta}$ are the estimated regression coefficients. As indicated by the formula above, it is most instructive to plot the hazard ratio as a function of a variable $t$ only if there is an interaction between $t$ and $X$. Otherwise, the resulting plot will simply be a horizontal line across time. ## Manson Trial (eprchd) We use data from the Manson trial (NEJM 2003) which is included in the `casebase` package. This randomized clinical trial investigated the effect of estrogen plus progestin (`estPro`) on coronary heart disease (CHD) risk in 16,608 postmenopausal women who were 50 to 79 years of age at base line. Participants were randomly assigned to receive `estPro` or `placebo`. The primary efficacy outcome of the trial was CHD (nonfatal myocardial infarction or death due to CHD). We fit a model with the interaction between time and treatment arm. We are therefore interested in visualizing the hazard ratio of the treatment over time. ```{r eprchd, results='show'} data("eprchd") eprchd <- transform(eprchd, treatment = factor(treatment, levels = c("placebo","estPro"))) str(eprchd) fit_mason <- fitSmoothHazard(status ~ treatment*time, data = eprchd, time = "time") summary(fit_mason) ``` To plot the hazard ratio, we must specify the `newdata` argument with a covariate pattern for the reference group. In this example, we treat the `placebo` as the reference group. Because we have fit an interaction with time, we also provide a sequence of times at which we would like to calculate the hazard ratio. ```{r plot-mason, results='show'} newtime <- quantile(fit_mason[["originalData"]][[fit_mason[["timeVar"]]]], probs = seq(0.01, 0.99, 0.01)) # reference category newdata <- data.frame(treatment = factor("placebo", levels = c("placebo", "estPro")), time = newtime) str(newdata) plot(fit_mason, type = "hr", newdata = newdata, var = "treatment", increment = 1, xvar = "time", ci = T, rug = T) ``` In the call to `plot` we specify the `xvar` which is the variable plotted on the x-axis, the `var` argument which specified the variable for which we want the hazard ratio. The `increment = 1` indicates that we want to increment `var` by 1 level, which in this case is `estPro`. Alternatively, we can specify the `exposed` argument which should be a function that takes `newdata` and returns the exposed dataset. The following call is equivalent to the one above: ```{r} plot(fit_mason, type = "hr", newdata = newdata, exposed = function(data) transform(data, treatment = "estPro"), xvar = "time", ci = T, rug = T) ``` Alternatively, if we want the `placebo` group to be the exposed group, we can change the `newdata` argument to the following: ```{r, results='show'} newdata <- data.frame(treatment = factor("estPro", levels = c("placebo", "estPro")), time = newtime) str(newdata) levels(newdata$treatment) ``` Note that the reference category in `newdata` is still `placebo`. Therefore we must set `increment = -1` in order to get the `exposed` dataset: ```{r} plot(fit_mason, type = "hr", newdata = newdata, var = "treatment", increment = -1, xvar = "time", ci = TRUE, rug = TRUE) ``` If the $X$ variable has more than two levels, than, `increment` works the same way, e.g. `increment = 2` will provide an `exposed` group two levels above the value in `newdata`. ## Save results In order to save the data used to make the plot, you simply have to assign the call to `plot` to a variable. This is particularly useful if you want to really customize the plot aesthetics: ```{r, fig.show='none', results='show'} result <- plot(fit_mason, type = "hr", newdata = newdata, var = "treatment", increment = -1, xvar = "time", ci = TRUE, rug = TRUE) head(result) ``` # Session information ```{r echo=FALSE, eval=TRUE} print(sessionInfo(), locale = F) ```