我安装了橙色
pip install orange3当我跑的时候
from Orange.regression import earth上面写着
ImportError: cannot import name 'earth'同样的,当我尝试
c = Orange.regression.earth.EarthLearner(data, degree=2, terms=10)上面写着
AttributeError: module 'Orange.regression' has no attribute 'earth'我做错了什么?
发布于 2018-03-14 09:03:11
EarthLearner是橙色(v2)的外接程序(orangecontrib.earth pypi包),orange3不可用。
https://stackoverflow.com/questions/49252310
复制相似问题