1

我在使用legendin时遇到问题R。我正在处理生存数据,我有两条卡普兰梅尔曲线。我需要识别我的情节中的每一个。我正在使用图例,这就是我尝试过的:

plot(kmenfprimaria.dos.inicio, ylab="2B. Probabilidad de supervivencia", 
     family="Times Roman", xlab="Tiempo en días", 
     sub="Mediana: LLA 175 IC 95% (142-295); LMA: 159 IC 95% (59-NR). p(log-rank)=0.783",
     ps=3, cex.main=0.9, cex.sub=0.7, cex.lab=0.7, 
     main="Supervivencia por diagnóstico", cex.main=0.9, lty=c(1,2), lwd=2, 
     legend(450, 0.8,legend= c("LLA","LMA"), lty=c(1,2), lwd=2))

错误:(列表)对象不能被强制输入“逻辑”

我不知道该怎么做才能强迫对象。

4

1 回答 1

0

legend不是参数plot,您需要调用plot()thenlegend()例如

plot(kmenfprimaria.dos.inicio, ylab="2B. Probabilidad de supervivencia", 
 family="Times Roman", xlab="Tiempo en días", 
 sub="Mediana: LLA 175 IC 95% (142-295); LMA: 159 IC 95% (59-NR). p(log-rank)=0.783",
 ps=3, cex.main=0.9, cex.sub=0.7, cex.lab=0.7, 
 main="Supervivencia por diagnóstico", cex.main=0.9, lty=c(1,2), lwd=2)

 legend(450, 0.8,legend= c("LLA","LMA"), lty=c(1,2), lwd=2)
于 2013-04-08T01:10:56.597 回答