Displaying 1 result from an estimated 1 matches for "brpercent".
2011 Aug 31
2
Treat an Unquoted Character String as a Data Frame
...;itt"
noquote(paste(study,level,".",population,sep=""))
This produces the desired fv02patients.itt, but it is just an unquoted
character string rather than a data frame.
Here is a condensed look at my function:
waterfall=function(data,title,file)
{ barplot(height=data$brpercent,main=paste("Best Change in Tumor
Volume\n",title)),
savePlot(filename=file,type="pdf")
}
waterfall(data=fv02patients.itt,title="EC-FV-02 ITT
Patients",file=fv02_itt_patients_waterfall")
It may be easier to leave it the way I have it, but if this is possible, I...