Linear Regression - how to incorporate in figure
조회 수: 2 (최근 30일)
이전 댓글 표시
Hello,
I have the following data:
x=[1 2 5 9 4 10 11 2 6]
y=[5 3 6 8 5 12 14 4 8]
I need to obtain a figure with:
- plot x y
- linear regression - y=mx+b
- Legend with linear regression equation y=mx+b
- R square value
I've seen this question: https://www.mathworks.com/matlabcentral/answers/38194-linear-regression
But still have not managed to achieve points 3 and 4.
thanks
댓글 수: 0
답변 (1개)
KSSV
2019년 7월 16일
Read about plotregression
x=[1 2 5 9 4 10 11 2 6] ;
y=[5 3 6 8 5 12 14 4 8] ;
plotregression(x,y);
댓글 수: 2
참고 항목
카테고리
Help Center 및 File Exchange에서 Linear and Nonlinear Regression에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!