Given:
data(veteran)
library(survival)
veteran$prognostic_indicator <- 0
veteran$prognostic_indicator[veteran$karno<50] <- 1
model <- coxph(Surv(time,status)~age+prognostic_indicator,data=veteran)
library(obsSens)
object <- obsSensSCC(model, which = "prognostic_indicator", g0 = seq(1,10,0.01),p0 = c(0.05,0.1,0.2,0.3,0.4), p1 = seq(0, 1, 0.05), logHaz = FALSE, method = "approx")
I can extract the vector:
object$lcl[21,1,1:901]
Which is ordered by descending values. I want to extract the "name" of the number which is closest to 1, but above it. In that case I want to extract the name "2.69" or position 170 since the corresponding number is 1.0001292. The number at position 2.70 is 0.9968844 and thus too low.
How do I extract the position (or name) in a vector of descending values where the number is nearest the value 1.0, but above?
matrixordata.frame) showing the different columns and values properly and explaining what you mean by closest value (of which column etc...) – Arun Jan 22 at 21:17