eland.Series.describe#
- Series.describe() Series #
生成描述性统计数据,以汇总数据集分布的集中趋势、离散度和形状,排除 NaN 值。
分析数字和对象系列,以及混合数据类型 DataFrame 列集。输出将根据提供的内容而异。有关更多详细信息,请参阅下面的说明。
TODO - 添加其他参数(当前仅支持数字值)
返回值#
- pandas.Series
摘要信息
另请参阅#
示例#
>>> df = ed.DataFrame('http://localhost:9200', 'flights') # ignoring percentiles as they don't generate consistent results >>> df.AvgTicketPrice.describe() count 13059.000000 mean 628.253689 std 266.386661 min 100.020531 ... ... ... max 1199.729004 Name: AvgTicketPrice, dtype: float64