TypeError: data argument can't be an iterator
Posted LOOK AT ME
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TypeError: data argument can't be an iterator相关的知识,希望对你有一定的参考价值。
运行代码时出现typeError错误,如下图:
追根溯源到自己引用的apriori算法里面的错误,搜索了下问题的原因,参考了博客:https://blog.csdn.net/y1535766478/article/details/75332961,DataFrame中的参数不能是iterator迭代器,必须先转化成为list类型。
在上图apriori算法中,d_2 = pd.DataFrame(map(sf,column), index = [ms.join(i) for i in column]).T 中传入了map类型参数,将map(sf,column)改为list(map(sf,column))即可。
以上是关于TypeError: data argument can't be an iterator的主要内容,如果未能解决你的问题,请参考以下文章
TypeError: index() got an unexpected keyword argument ‘doc_type‘
selenium打开浏览器底层实现原理中的异常1(TypeError: dump() missing 1 required positional argument: 'fp')
异常:TypeError: ‘caller‘, ‘callee‘, and ‘arguments‘ properties may not be accessed on strict mode func
statsmodels.tsa.arima_model预测时报错TypeError: int() argument must be a string, a bytes-like object or a
TypeError: take(): argument 'index' (position 1) must be Tensor, not numpy.ndarray