[Error]module 'scipy' has no attribute 'stats'
AttributeError: module 'scipy' has no attribute 'stats'
#회귀선 기울기, 상수항
slope, intercept, _, _, _, = sp.stats.linregress(data.index, data.Close)
print(slope, intercept)
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
C:\Users\Public\Documents\ESTsoft\CreatorTemp/ipykernel_33508/738026083.py in <module>
2
3 #회귀선 기울기, 상수항
----> 4 slope, intercept, _, _, _, = sp.stats.linregress(data.index, data.Close)
5 print(slope, intercept)
AttributeError: module 'scipy' has no attribute 'stats'
Why?
scipy 패키지는 많은 서브패키지를 가지고 있어 자동으로 서브패키지를 임포트하지 못함
해결
ex)
from scipy import stats, interpolate
Author And Source
이 문제에 관하여([Error]module 'scipy' has no attribute 'stats'), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@htright/Errormodule-scipy-has-no-attribute-stats저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)