how can i plot R2(regression line) between target and prediction
조회 수: 54 (최근 30일)
이전 댓글 표시
Please explain how can i plot R2 as regression line between target and prediction in matlab
Can some one please share the code ?
i am attaching a sample graph.
댓글 수: 0
답변 (2개)
Divija Aleti
2021년 6월 24일
Hi,
Firstly, as R2 is a scalar, it cannot be plotted.
To plot the regression line, follow the example shown in the link below:
However, to get a similar output as shown in the above graph, you will have to make changes in the example. Refer to the sample code given below which is an extension of the example given in the link.
[x,t] = simplefit_dataset;
net = feedforwardnet(10);
net = train(net,x,t);
y = net(x);
plotregression(y,t,'Regression') % Reversed the order of t and y, as we want Target on the y-axis and Prediction on the x-axis
% Customization of title, x-label and y-label
a=gca;
title(a,'Test Data, R^2=0.9893')
xlabel(a,'Prediction')
ylabel(a,'Target')
Output:
For calculating the value of R-squared(R2), which is given as the title of the graph, have a look at the following links:
Hope this helps!
Regards,
Divija
댓글 수: 0
pathakunta
2024년 1월 26일
Firstly, as R2 is a scalar, it cannot be plotted. To plot the regression line, follow the example shown in the link below: plotregression However, to get a similar output as shown in the above graph, you will have to make changes in the example. Refer to the sample code given below which is an extension of the example given in the link. [x,t] = simplefit_dataset; net = feedforwardnet(10); net = train(net,x,t); y = net(x); plotregression(y,t,'Regression') % Reversed the order of t and y, as we want Target on the y-axis and Prediction on the x-axis % Customization of title, x-label and y-label a=gca; title(a,'Test Data, R^2=0.9893') xlabel(a,'Prediction') ylabel(a,'Target') Output:
For calculating the value of R-squared(R2), which is given as the title of the graph, have a look at the following links: Linear Regression Coefficient of Determination (R-Squared) Hope this helps!
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!