which quantile value is good for prediction ?
조회 수: 3 (최근 30일)
이전 댓글 표시
Hello,
Quantile random forest model is used to predict 1 year solar radiation.
Question : which quantile value should i use to have accurate forecasts ?
Thank you.
댓글 수: 4
Adam Danz
2019년 9월 25일
I'm not familiar with RF or QRF but in terms of expected values from a distribution, the 50 quantile is the median and if the distribution is even remotely normal, then the median is the expected value. If the distribution is not approximately normal then more info is needed in terms of estimating the expected value.
I agree with the cyclist that such a comparison is certainly not a proof in the formal definition of the term. For random processes, bootstrapping is often a good approach at computing expected value and it's error (confidence intervals). But I have no idea if this suggestion is applicable to your project.
채택된 답변
the cyclist
2019년 9월 23일
The usual random forest (RF) algorithm gives a point estimate for each set of input values. It predicts one value.
The point of quantile random forest (QRF) is to provide an estimate of the dispersion of observations around the predicted value.
So, if all you care about is the prediction value, you don't really need to use QRF; you could just use RF. That being said, I expect the 50th percentile gives the best average prediction.
댓글 수: 2
the cyclist
2019년 9월 25일
It is certainly not proof (in the mathematical sense). I suppose it is evidence.
I am not an expert in QRF, but my understanding is that its primary purpose is to get a sense of variability around the point estimate. So, I am not really sure of what you are trying to do here. (Unless it is just a homework problem, as Adam has speculated.)
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!