Displaying 4 results from an estimated 4 matches for "davele".
Did you mean:
davelee
2007 Aug 01
3
"Cut marks" on a plot's y-axis to indicate it is a truncated axis
Hi,
I've plotted a Kaplan-Meier curve but the curves only range from 0.7 to
1 on the y-axis. Therefore I have used: -
ylim=c(0.7,1)
[although I think convention dictates that you plot 0.5 to 1 to show the
median? A few papers I've read have done this]??
BUT, I would like a symbol like // (but rotated 90 degrees) to indicate
that the y-axis has been truncated. I'd need to be able to
2007 Mar 05
4
Identifying points in a plot that have duplicate values
I have code like this: -
#-----------------------------------------------------------------------
------------------------------------------------------
x=scan()
0 0 0 0 0 1 2 3 4
y=scan()
1 1 1 2 2 1 3 4 5
plot(x,y)
identify(0,1,3) #Allows me to select manually to identify co-ordinate
(0,1) as being duplicated 3 times
identify(0,2,2) #Allows me to select manually to identify co-ordinate
2007 Aug 06
1
(Censboot, Z-score, Cox) How to use Z-score as the statistic within censboot?
Dear R Help list,
My question is regarding extracting the standard error or Z-score from a
cph or coxph call. My Cox model is: -
modz=cph(Surv(TSURV,STATUS)~RAGE+DAGE+REG_WTIME_M+CLD_ISCH+POLY_VS,
data=kidneyT,method="breslow", x=T, y=T)
I've used names(modz) but can't see anything that will let me extract
the Z scores for each coefficient or the standard errors in the same
2007 Sep 10
0
Loop and loop output [Cox model, for, function, loglik]
Dear R users,
Below I have written 4 functions CIT1, CIT2a and CIT2b and CIT3 which
recode a variable CLD_ISCH into 3 new variables(T1 T2 T3), I wish to use
T1, T2 and T3 based on the values of tf1 and tf2.
(NOTE:- T2a is used to create T2 in a long winded manner due to my lack
of programming experience)
I then attach T1 T2 and T3 to a dataset KidneyT that contains other
variables i wish to use