式の右辺をR関数に渡して、式の左辺を「加算」してgam()
を呼び出したいとします。私はこれを醜いas.formula()の構築などなしで達成したいと思います。式の右辺を別の式に渡すにはどうすればよいですか?
私は次の最小限の例で立ち往生しました。
require(mgcv)
set.seed(0) ## set.seed(1)
gamEx1 <- gamSim(1, n=400, dist="normal", scale=2) ## simulate some data
str(gamEx1) ## display structure
## calling gam() and passing the right-hand side of a formula
gamFitter <- function(formula.RHS, data, ...){
z <- 2*data$y + data$f0 # some given values
gam(z ~ formula.RHS, data=data, ...) # call gam()
}
## call the function with the right-hand side of a formula
gamFitter(formula.RHS=~s(x0)+s(x1)+s(x2)+s(x3), data=gamEx1)
Error in model.frame.default(formula = z ~ formula.RHS, data = data,
drop.unused.levels = TRUE) :
invalid type (language) for variable 'formula.RHS'
ありがとう、デレク、私はこの機能が存在するのか分からなかった。 –
@MariusHofertこの答えは、現在受け入れられているよりもエレガントです。受け入れを再考できますか? – Andrie