eland.Series.shape# property Series.shape: Tuple[int, int]# 返回一个元组,表示 Series 的维度。 返回# shape: tuple 行数 列数 备注# 行数 len(series) 查询 Elasticsearch 列数 == 1 示例# >>> df = ed.Series('http://localhost:9200', 'ecommerce', name='total_quantity') >>> df.shape (4675, 1)