标签: r
我尝试将as.formula()与paste()一起使用来构建回归方程式。
as.formula()
paste()
以下示例效果很好:as.formula(paste("y ~ 1 + x1 +", paste("y", 2, sep=""), sep=""))。
as.formula(paste("y ~ 1 + x1 +", paste("y", 2, sep=""), sep=""))
但是,如何在paste()中使用引号?此行失败:as.formula(paste("y ~ 1 + x1 + fx(x2, m="abc")", paste("y", 2, sep=""), sep=""))。提前谢谢......
as.formula(paste("y ~ 1 + x1 + fx(x2, m="abc")", paste("y", 2, sep=""), sep=""))