eland.DataFrame.shape#

property DataFrame.shape: Tuple[int, int]#

返回表示 DataFrame 维数的元组。

返回#

shape: 元组

  1. 行数

  2. 列数

注意#

  • 行数 len(df) 查询 Elasticsearch

  • 列数 len(df.columns) 是缓存的。如果映射已更新,则必须更新 DataFrame。

示例#

>>> df = ed.DataFrame('http://localhost:9200', 'ecommerce')
>>> df.shape
(4675, 45)