@Marimo ,
Leave-one-out is a version of k-fold cross validation where all rows in your data set are used as a validation "set" one at a time.
As an example, if you have 20 rows in your data set you could employ a k-fold 5 cross-validation which will use 20% of your data 5 times. In this case that would 4 rows for cross-validation and 16 rows for training.
Each 20% is using something called sampling with replacement to try and ensure all of the data is included in one of the five k-folds. The other option in this example is to make a k-fold 20 which then uses each row of the data set as a validation set. The higher the number of folds, the lower the percentage of the data is used for cross-validation. K-fold cross-validation can be found in most platforms in JMP.
Another option would be to use a method like Bootstrap Forest which has sampling with replacement built into the algorithm. You would need JMP Pro to take full advantage of this platform. Bootstrap Forest uses model averaging to find the most important variables in your data set by building many smaller models (trees) with different subsets of the data.
HTH
Bill