参考文档:https://es.xiaoleilu.com/010_Intro/00_README.html 一.索引操作 1.查看当前节点的所有的index 查看当前节点的所有的index [root@es1 ~]# curl -X GET 'http://10.87.6.2:9200/_cat/indices?v' health status index uuid pri rep docs.count docs.deleted store.size pri.store.size green
pandas包 # 引入包 import pandas as pd import numpy as np import matplotlib.pyplot as plt Series Series 是一维带标签的数组,数组里可以放任意的数据(整数,浮点数,字符串,Python Object).其基本的创建函数是: s = pd.Series(data, index=index) 其中 index 是一个列表,用来作为数据的标签.data 可以是不同的数据类型: Python 字典 ndarray