我的数据如下所示,该数据的类为“ tbl_spark”,“ tbl_sql”,“ tbl_lazy”,“ tbl”
Main_CustomerID Product
<int> <list>
60001 <list [271]>
60002 <list [30]>
60003 <list [2]>
60004 <list [7]>
60005 <list [2]>
60006 <list [16]>
我尝试一下
temp <- function() {
for( i in 1 : custtrans %>% select(Product) %>% count()) {
dat <- custtrans[i,]
}
return(dat)
}
它引发错误错误
custtrans [i,]:不正确的维数
如何为sparklyr
tbl
执行for循环?