Error in find Precision recall curve
3 次查看(过去 30 天)
显示 更早的评论
Hello
I am following https://www.mathworks.com/help/stats/perfcurve.html#bunsogv-XCrit to find PR curve. On x axis i need recall value and on y axis i want precision value. as per the syntax it would be
'XCrit','tpr'
'YCrit','ppv'
but is shows error
['XCrit','tpr','YCrit','ppv'] = perfcurve(Y,diffscore1,'HandGrip');
Error: Assigning the function output to this expression is not supported.
Please help me
0 个评论
采纳的回答
Sargondjani
2021-6-23
Try without the quotations:
[XCrit,tpr,YCrit,ppv] = perfcurve(Y,diffscore1,'HandGrip');
In general quotations are used to specify strings (ie. names), which are not necessary for variable names.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 ROC - AUC 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!