gpt4 book ai didi

python - 用 Python 计算 Fisher 准则

转载 作者:行者123 更新时间:2023-11-30 09:30:18 25 4
gpt4 key购买 nike

是否有一个Python模块,当给定两个向量x和y,其中y是二类(0,1)时,它计算Fisher准则,如这里的公式http://compbio.soe.ucsc.edu/genex/genexTR2html/node12.html所示

请注意,我并不打算应用费舍尔线性判别式,而只是应用费舍尔准则:)。

提前致谢!

最佳答案

据我所知,还没有,但你可以自己编写(请测试这个结果是否正确,我只是根据我对公式的理解)。

import numpy as np

def fisher_criterion(v1, v2):
return abs(np.mean(v1) - np.mean(v2)) / (np.var(v1) + np.var(v2))

例如,这给出了

>>> fisher_criterion([0, 1, 2], [0, 1])
0.54545454545454553

关于python - 用 Python 计算 Fisher 准则,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15481990/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com