How to solve this (x, y) length problem about R language

pdf("calibrate3.pdf",12,8)
par(mar = c(10,5,3,2),cex = 1.0) > plot(cal,lwd=7,lty=6,errbar.col="black",xlim = c(0,1.),ylim = c(0,1.),xlab ="Nomogram-Predicted Probability of 3-Year Survival",ylab="Actual 3-Year Survival",col="blue")
lines(cal,c('mean.predicted','KM'),type = 'a',lwd = 3,col ="black" ,pch = 16)
Error in xy.coords(x, y) : 'x' and 'y' lengths differ > box(lwd = 1)
abline(0,1,lty = 3,lwd = 3,col = "black")
dev.off()

Can you edit your post so that the format is a code chunk? Add ```r to the top and ``` to the bottom.

What are dimensions of 'cal'?

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.