天软金融分析.NET函数大全 > TSL函数 > 基础函数 > 数组 > 统计函数

Describe    

简述
简单描述统计
定义
Describe(Data:Array of number;Percentiles:Array of number):Array
参数
名称类型说明
DataArray of number 一维数字数组,或 二维矩阵。二维矩阵时,对每列进行操作
PercentilesArray of number 统计的分位点,默认取array(0.25,0.5, 0.75)
返回Array数组
  • 范例

    范例01:
    load_dataset_iris(data);
    return Describe(data);

    范例02:
    return Describe(randn(0,1,1000),array(0.05,0.1)->0.95);
相关