선형 회귀 알고리즘 import 모듈
선형회귀를 구현하기 위한 Python module 데이터 분석에서 많이 사용되는 선형회귀를 위한 import. from scipy.stats import linregress 리스트로써 아래가 생성되면, X축 Y축으로 점을 찍고, SLOPE를 구한다. slope_point_30_x = [] slope_point_30_y = [] slope_point_15_x = [] slope_point_15_y = [] slope, intercept, r_value, p_value, std_err = linregress(slope_point_30_x, slope_point_30_y) slope_15, intercept_15, r_value_15, p_value_15, std_err_15 = linregress(slope..
2021. 1. 15.