If I understand your qns correctly, you mean the output of the prediction function on the model installed using the rank: pairwise.
Prediction gives a predicted variable (yhat).
This is the same for reg: linear / binary: logistic, etc. The only difference is that reg: linear builds the trees in min (rmse (y, yhat)), and rank: the assembly trees fall in max (map (rank (y), rank (yhat))). However, the conclusion is always yhat.
Depending on the values โโof your dependent variables, the output may be any. But I usually expect that the result will be much smaller compared to the dependent variable. This usually takes place, since there is no need to correspond to extreme data values, the tree just has to create predictors that are large / small in order to rank first / in the group in the group
source share