我在 numMedidas = numMedidas + anal.Medidas.Count(); 时遇到此错误,我无法弄清楚如何解决它: InnerException:{"已经有一个与此Connection关联的开放DataReader,必须先关闭它。"} 来源:EntityFramework
这是代码:
# select variables
vars_to_process <- grep('value',colnames(x),value=T)
# create index ZS < 3
ix <- apply(x[vars_to_process],2,function(x) (x-mean(x))/sd(x) < 3)
#filter rows
xclean <- x[rowSums(ix) == length(vars_to_process),]
> nrow(xclean)
[1] 98832
任何提示??
谢谢!