Hi I have the following events.chart from the Hmisc package.
event.chart(events,
subset.c = c('D2BMET','T2Fail','Cens','zero'),
x.lab = 'Progression Time for Breast Cancer Patients (months)',
y.lab = 'Subjects (sorted by time to 1st Brain Metastasis)',
y.idlabels = 'Pt',
titl = 'Breast Cancer Brain Metastasis Events Chart',
point.pch = c(1,2,17,124), point.cex = c(1,1,1,1),
legend.plot = TRUE, legend.location = 'i', legend.cex = 1,
legend.point.text = c('Time to 1st Brain Metastasis', 'Last Followup', 'Death'),
x.julian = TRUE,
legend.bty='o', legend.point.at = list(c(400,400), c(14,14)))
I tried using the
axis(2,cex.axis= 0.5)
to make the y-axis text smaller, but nothing happens. Doing
axis(1,cex.axis= 0.5)
makes the x-axis text smaller, but nothing seems to work on the y-axis.
Any suggestions would be appreciated.
Thanks, Ed