So I've got a plot with customized axes. I want the axes to be joined, but they get separated when I customize them with the axis()
function.
Here's the code that generates the plot:
plot(smodelesp0,col=2,lwd=2,xlab="Tiempo en Días",ylab="Proporción de Frees",
main="Proporción de Usuarios Free pasados X días según Perfil",axes=F)
axis(1,at=seq(0,250,by=10),labels=seq(0,250,by=10),lwd=2)
axis(2,at=seq(0,1,by=0.1),labels=seq(0,1,by=0.1),lwd=2)
lines(smodelesp1,col=4,lwd=2)
legend("topright",c("Perfil de máximo riesgo","Perfil de mínimo riesgo"),col=c(2,4),lwd=2)
Any idea? Am I skipping some parameter in the axes function?