How to plot the precision and recall curve?

조회 수: 12 (최근 30일)
Nithya SIvasamy
Nithya SIvasamy 2017년 5월 9일
답변: Pramod Soni 2018년 6월 23일
The precision and recall values are calculated as per theand from these values how to get the precision and recall curve.
Recall=[ 0.0432 0.0789 0.1089 0.1365 0.1629 0.1875 0.2121 0.2348 0.2554 0.2743]
Precision=[0.4320 0.3945 0.3630 0.3413 0.3258 0.3125 0.3030 0.2935 0.2838 0.2743]
Whether the values obtained here are correct.
All the precision and recall curves starts and ends by one.
  댓글 수: 1
Adam
Adam 2017년 5월 9일
I don't really understand what you are asking, but if you want to plot these numbers then simply
plot( Recall, Precision )
will do the job.
(With the usual caveat that I would always explicitly create an axes first and explicitly pass that to the plot function).

댓글을 달려면 로그인하십시오.

답변 (1개)

Pramod Soni
Pramod Soni 2018년 6월 23일
Precision = [.........];
Recall = [.........];
[Where values are given by you in Precision and Recall]
cftool(Recall, Precision)
It will draw the actual graph

카테고리

Help CenterFile Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by