Can Azure calculate confidence interval for regressions?

I plan to try the various regression methods provided by Azure ML Studio to predict numeric values. I wonder if it is possible to get forecasts along with the corresponding confidence intervals. In other words, I would like the regression function to tell me not only the expected value (prediction), but also how confident it is (the model) in this value. Does this regression support Azure?

ADDED

Related question. Can a probability density function be constructed in "regressors"? For example, for this case (rows in the data table), I would like to have not only one number as a prediction (expected value), but also the probabilities of all possible values.

+1
regression azure-machine-learning azure confidence-interval
source share
1 answer

Currently, you will need to use R or python in Azure ML for the confidence interval.

+2
source share

All Articles