2017-09-28 217 views
0

我有一個查詢:ElasticSearch查詢大熊貓數據幀

s = Search(using=client, index='myindex', doc_type='mytype') 
s.query = Q('bool', must=[Q('match', BusinessUnit=bunit), 
          Q('range', **dicdate)]) 

res = s.execute() 

還給我627033行,我想轉換本詞典在數據幀與627033線

+0

您可以提供有關ElasticSearch查詢輸出的更多信息嗎?如果僅僅是字典,問題應該是將字典轉換爲數據框。有很多答案在這個例子https://stackoverflow.com/questions/34589332/python-dictionary-to-pandas-dataframe –

+0

實際上不是我正在尋找的字典的格式,但它總是隻返回10我想要所有的元素 –

回答