cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Register to attend Discovery Summit 2025 Online: Early Users Edition, Sept. 24-25.
  • New JMP features coming to desktops everywhere this September. Sign up to learn more at jmp.com/launch.
Choose Language Hide Translation Bar
NishaKumar
Level III

How do you calculate the PR Curve in JMP's addin XGBOOST?

I am needing to determine the PR Curve for XGBOOST (addin in JMP Pro), is there a way to ask JMP to output it? Otherwise, would the calculation:

the number of true positives divided by the total number of true positives and false positives suffice in manually calculating the PR Curve?

1 REPLY 1
jthi
Super User

Re: How do you calculate the PR Curve in JMP's addin XGBOOST?

It does seem to get added to the platform based on (column?) inputs

jthi_0-1719381582113.png

Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
obj = XGBoost(Y(:age), X(:height, :weight), Fit);
-Jarmo

Recommended Articles