Python 导入包错误 AttributeError: module 'regressors' has no attribute 'stats'

错误提示:AttributeError: module 'regressors' has no attribute 'stats'

错误代码:代码只有两行,一行输入包,一行调用。本来可以用 from regressors import stats,但和scipy包里面的stats重复了。

from scipy import stats
import regressors

regressors.stats.summary(clf, x, y)

可能原因:在不同的Python版本中,有些包的附属关系不一致,导入了某个大的包,其下的类可能没有导入。

解决方法一:换用 import regressors.stats

from scipy import stats
import regressors.stats

regressors.stats.summary(clf, x, y)

解决方法二:把重复的包重命名

from scipy import stats
from regressors import stats as stats_reg

stats_reg.summary(clf, x, y)

你可能感兴趣的:(Python 导入包错误 AttributeError: module 'regressors' has no attribute 'stats')