Entering edit mode
4 months ago
Bine
▴
90
Good morning,
I was wondering whether anyone could advice me on the following: I have a Cox survival model in R (function coxph), which ,among other variables (e.g. age, sex), contains a variable with percentage (cell fractions, e.g. 10% endothelial cells, 50% epithelial cells). Having a variable with a percentage makes it hard to interpret the Hazard Ratio (HR) in the model.
Does anyone who how to deal with a variable with percentage in a model (particular in Cox models) to make them easier to interpret?
Please find an example below:
coxph(formula = Surv(PFI.t_5y, PFI.e_5y) ~ gender + age +
percentage_cell_fractions, data = combined, model = TRUE)
HR for percentage: 0.351382 (What does this mean??)
P value for percentage: 0.044
Comment: HR < 1 normally means reduction of hazard of dying (e.g. being male reduces the HR of dying). But in the case of percentage how do I interpret that?