eland.DataFrame.es_dtypes#

property DataFrame.es_dtypes: Series#

Return the Elasticsearch dtypes in the index

Returns#

pandas.Series

The data type of each column.

Examples#

>>> df = ed.DataFrame('http://localhost:9200', 'flights', columns=['Origin', 'AvgTicketPrice', 'timestamp', 'dayOfWeek'])
>>> df.es_dtypes
Origin            keyword
AvgTicketPrice      float
timestamp            date
dayOfWeek            byte
dtype: object