eland.DataFrame.query#
- DataFrame.query(expr) DataFrame #
使用布尔表达式查询 DataFrame 的列。
TODO - 添加其他 pandas 参数
参数#
- expr: str
布尔表达式
返回值#
- eland.DataFrame
由查询结果填充的 DataFrame
TODO - 添加指向 eland 用户指南的链接
另请参阅#
示例#
>>> df = ed.DataFrame('http://localhost:9200', 'flights') >>> df.shape (13059, 28) >>> df.query('FlightDelayMin > 60').shape (2730, 28)