我想获得特定x的函数解决方案 e.g。
f <- expression {x^2}
现在我正在寻找例如
的yxn <- 2
那么我有什么选择来获得我期望的4?
答案 0 :(得分:2)
我怀疑这就是你要找的东西:
f <- function(x) {
x^2
}
f(2)
4
f(-2)
4
答案 1 :(得分:1)
函数的结构由:
给出MyFunction <- function_name(arg1, arg2, ... ) ##any number of arguments that you want
{
statements ##the expression you want to write
return(object) ##the result of your expression
}
看起来你想获得x数的平方。
然后:
f <- function(x){
x^2
return(x)
}