我应该如何获得dask数据框的形状?
作者:互联网
执行.shape给我以下错误.
AttributeError: ‘DataFrame’ object has no attribute ‘shape’
我应该如何获得形状呢?
解决方法:
您可以直接获取列数
len(df.columns) # this is fast
您也可以在数据框本身上调用len,尽管要注意这会触发计算.
len(df) # this requires a full scan of the data
Dask.dataframe在不先读取所有记录的情况下不知道数据中有多少记录.
标签:dask,python 来源: https://codeday.me/bug/20191010/1887477.html