我有一个植物群落矩阵作为 numpy 数组,其中行是物种,列是群落
species 1,2,3 [[ 0 13 2 0 11 0 12 5 0 0]
species 4,5,6 [ 0 97 1 5 117 0 64 24 58 3]
species 7,8,9 [ 0 0 0 0 0 0 11 3 5 0]
species 10,11,12 [ 0 13 6 0 0 0 11 8 0 1]]
我想计算相异矩阵。我尝试安装 python 包 scikit-bio 但我收到错误
error: command 'D:\\Program Files (x86)\\Microsoft Visual Studio 10.0\\VC\\B
IN\\cl.exe' failed with exit status 2
我安装了 ecopy 模块。当我导入 ecopy 时,我收到错误“无效语法 -ecopy.regression”
from .nls import nls
from .isoregress import isotonic
如何解决以上问题?或者我可以使用python中的任何其他模块吗?