#方差 #函数 #分析 #随机 #特征 #平均 #重要性

fanova

A Rust 实现 fANOVA (函数分析方差)

3 个不稳定版本

0.2.0 2022年7月1日
0.1.1 2020年7月22日
0.1.0 2020年7月19日

科学中排名第325

Download history 20/week @ 2024-03-11 4/week @ 2024-03-25 65/week @ 2024-04-01 11/week @ 2024-04-08 1/week @ 2024-04-22 2/week @ 2024-05-06 4/week @ 2024-06-03 29/week @ 2024-06-10 9/week @ 2024-06-17 15/week @ 2024-06-24

每月下载量57

MIT 协议

38KB
922

fanova

fanova Documentation Actions Status Coverage Status License: MIT

一个 Rust fANOVA (函数分析方差) 实现。

fANOVA 提供了一种计算特征重要性的方法。

示例

use fanova::{FanovaOptions, RandomForestOptions};
use rand::{Rng, SeedableRng};

let mut feature1 = Vec::new();
let mut feature2 = Vec::new();
let mut feature3 = Vec::new();
let mut target = Vec::new();

let mut rng = rand::rngs::StdRng::seed_from_u64(0);
for _ in 0..100 {
    let f1 = rng.gen();
    let f2 = rng.gen();
    let f3 = rng.gen();
    let t = f1 + f2 * 2.0 + f3 * 3.0;

    feature1.push(f1);
    feature2.push(f2);
    feature3.push(f3);
    target.push(t);
}

let mut fanova = FanovaOptions::new()
    .random_forest(RandomForestOptions::new().seed(0))
    .fit(vec![&feature1, &feature2, &feature3], &target).unwrap();
let importances = (0..3)
    .map(|i| fanova.quantify_importance(&[i]).mean)
    .collect::<Vec<_>>();

assert_eq!(
    importances,
    vec![0.02744461966313835, 0.22991883769286145, 0.6288784011550144]
);

参考文献

依赖项

~2.2–3MB
~60K SLoC