eland.Series.shape¶
- property Series.shape: tuple[int, int]¶
Return a tuple representing the dimensionality of the Series.
Returns¶
shape: tuple
number of rows
number of columns
Notes¶
number of rows
len(series)queries Elasticsearchnumber of columns == 1
Examples¶
>>> df = ed.Series('http://localhost:9200', 'ecommerce', name='total_quantity') >>> df.shape (4675, 1)