Skip to content

Latest commit

 

History

History
33 lines (29 loc) · 1.99 KB

File metadata and controls

33 lines (29 loc) · 1.99 KB

Quantile Regression

Quantile regression is an extension of Standard linear regression, which estimates the conditional median of the outcome variable and can be used when assumptions of linear regression do not meet.
Suppose a real estate analyst wants to predict home prices from factors like home age and distance from job centers.
The typical goal will be generating the best home price point estimate given those factors, where “best” often refers to the estimate that minimizes squared deviations from reality.
But what if they want to predict not just a single estimate, but also the likely range? This is called the prediction interval, and the general method for producing them is known as Quantile Regression.

Code

python3 sample.py

Resources