Now fit a model to the localised melanoma data where the outcome is observed survival (i.e. all deaths are considered to be events).
library('knitr') read_chunk('../q13.R') opts_chunk$set(cache=FALSE)
You may have to install the required packages the first time you use them. You can install a package by install.packages("package_of_interest")
for each package you require.
Load the melanoma data and explore it.
These two models are conceptually different since the Cox model
adjusts for ‘time’ even though this is not explicit in the
coxph
function. In this example, ‘time’ refers to ‘time on
study’ (time since entry) which we do not expect to be a
strong confounder. That is, we would expect the estimates of the
effect of high energy to be similar for the two models, which
they are.
If we use a different timescale then this amounts to adjusting for a different factor. As such, we would not expect the estimates to be identical. Attained age, unlike time since entry, is expected to be a confounder but we see that it is not a strong confounder.
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.