我想绘制一条具有变化点的曲线x=5
到目前为止,我正在使用代码
curve(exp(0.68+0.92*x), from=0,to=5, xlim=c(0,12), ylim=c(0,500))
curve(exp(0.68+0.92*x-0.7*(x-5)), from=5,to=12, add=T)
是否可以将其写在一行(一个curve
命令)中?我刚在想
像这样的东西
curve(exp(0.47+0.8*x-0.7*(x-5)*if(x<5,0,1)), from=0,to=12, xlim=c(0,12), ylim=c(0,500))
但它不适用于 R