我有各种dtypes的数据:餐厅编号int64餐厅名称对象国家/地区代码int64...评分文字对象投票int64dtype:对象当我运行以下代码时:too_verbose_columns = (data.select_dtypes(include = 'O')\
.columns[data.select_dtypes(include='O').nunique() > 2]\
.tolist())我收到此错误:TypeError:include和exclude必须都为非字符串序列。如何解决此错误?
添加回答
举报
0/150
提交
取消