myfunction <- function(y){
y <- rnorm(100)
mean(y)
}
myfunction()
[1] 0.05248908
dir()
[1] "myfunction.R"
source("myfunction.R")
源代码错误(“myfunction.R”):myfunction.R:2:3:意外符号 1: 2:R版
我刚开始学习R编程。我找不到这个错误的答案。
答案 0 :(得分:0)
尝试格式化您的代码:
myfunction <- function() {
y <- rnorm(100)
mean(y)
}
那应该工作。