Model conditional quantiles with resistant weighting and diagnostics. Compare fit, residual spread, and forecasts quickly. Built for noisy samples, skewed trends, and influential observations.
Enter one predictor series, one response series, and optional case weights. Values may be separated by spaces, commas, or new lines.
| Observation | X | Y | Weight | Note |
|---|---|---|---|---|
| 1 | 1 | 4.2 | 1.0 | Baseline point |
| 2 | 2 | 4.9 | 1.0 | Near median trend |
| 3 | 3 | 5.7 | 1.0 | Steady increase |
| 4 | 4 | 6.5 | 1.0 | Moderate growth |
| 5 | 5 | 7.1 | 1.0 | Typical observation |
| 6 | 6 | 8.0 | 1.0 | Typical observation |
| 7 | 7 | 8.7 | 1.0 | Typical observation |
| 8 | 8 | 9.4 | 1.0 | Typical observation |
| 9 | 9 | 10.2 | 1.0 | Near fitted line |
| 10 | 10 | 14.8 | 1.0 | High residual candidate |
Minimize: Σ wi ρτ(ri)
ri = yi − (β0 + β1xi)
ρτ(r) = τr, if r ≥ 0
ρτ(r) = (τ − 1)r, if r < 0
ui = ri / s
ωi = 1 when |ui| ≤ c, otherwise c / |ui|
The calculator combines quantile loss with Huber-style residual weights. It starts from a resistant slope estimate, updates observation weights iteratively, and solves a weighted least squares step until the coefficient changes become very small.
Pseudo R1 compares the final pinball loss against a baseline model using the unconditional quantile. Residual scale is estimated with the median absolute deviation, which remains stable under outliers.
It estimates a conditional quantile line for one predictor and one response. Instead of modeling the mean, it targets a chosen percentile such as the median or upper tail.
It handles skewed outcomes, unequal spread, and influential residuals better than ordinary least squares. Robust weighting also reduces the pull from unusual points during iterative fitting.
A quantile of 0.50 estimates the conditional median. A quantile of 0.90 estimates the upper conditional tail, which is useful for stress, risk, or service-level analysis.
It controls how quickly large standardized residuals are down-weighted. Smaller values make the fit more resistant, while larger values allow more influence from extreme observations.
Case weights let you emphasize some observations more than others. They can represent importance, exposure, reliability, or grouped records when each row summarizes repeated measurements.
Pseudo R1 shows improvement over a baseline quantile-only model. Larger values usually mean better fit, but it should be compared alongside residual scale and pinball loss.
Those rows produced large standardized residuals, so the robust weighting step reduced their impact. They are not automatically errors, but they deserve closer inspection.
This version is designed for a single predictor plus intercept, which keeps the workflow transparent and easy to audit. For multiple predictors, expand the design matrix and solver.
Important Note: All the Calculators listed in this site are for educational purpose only and we do not guarentee the accuracy of results. Please do consult with other sources as well.