有没有办法将R中定义的变量传递给sqldf包中的SQL语句?
我必须运行下面的代码并将'v'变量传递给sql select语句为'$ v'
for (i in 1:50){
v <- i+ 450
temp <- sqldf("select count(V1) from file_new where V1='$v' ")
}
虽然它运行但是返回错误的结果。 [结果应为1000但此代码返回0]。
因此,我认为它没有传递变量值。
答案 0 :(得分:2)
如果v是一个整数,那么你不想用单引号括起$ v - 这使它成为一个字符串值。尝试没有单引号。
temp <- fn$sqldf("select count(V1) from file_new where V1=$v ")