인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

werooring1287's profile image
werooring1287

asked

[Revised Edition] The Complete Guide to Python Machine Learning

Understanding Polynomial Regression and Predicting Boston Housing Prices Using Polynomial Regression

다항식 계수

Written on

·

168

0

다항회귀의 이해와 다항회귀를 이용한 보스턴 주택가 예측에서

09분 36초쯤 

일차 단항식 계수와 2차 다항식 계수가 있는데

[1, x1, x2, x1x2, x1^2, x2^2]가 아니라

[1, x1, x2, x1^2, x1x2, x2^2]가 아닌지요?

감사합니다

머신러닝 배워볼래요? python통계

Answer 1

0

dooleyz3525님의 프로필 이미지
dooleyz3525
Instructor

그렇군요. [1, x1, x2, x1^2, x1x2, x2^2] 로 수정하겠습니다.

감사합니다.

werooring1287's profile image
werooring1287

asked

Ask a question