General-purpose, introductory and illustrative examples.
diff --git a/gallery/plot_predict_custom.html b/gallery/plot_predict_custom.html
new file mode 100644
index 0000000..37f3e83
--- /dev/null
+++ b/gallery/plot_predict_custom.html
@@ -0,0 +1,611 @@
+
+
+
+
+
+
+
+
+
+
+
Calculating User-Specified Functions with QRFs — quantile-forest 1.3.4 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Skip to main content
+
+
+
+
+
+ Back to top
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Calculating...
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Calculating User-Specified Functions with QRFs
+An example that demonstrates a way of extracting the empirical distribution
+from a quantile regression forest (QRF) for one or more samples in order to
+calculate a user-specified function of interest. While a QRF is designed to
+estimate quantiles from the empirical distribution calculated for each sample,
+in many cases it may be useful to use the empirical distribution to calculate
+other quantities of interest. Here, we calculate the ECDF for a test sample.
+
+
+
+
from itertools import chain
+
+import altair as alt
+import numpy as np
+import pandas as pd
+import scipy as sp
+from sklearn import datasets
+from sklearn.model_selection import train_test_split
+
+from quantile_forest import RandomForestQuantileRegressor
+
+np . random . seed ( 0 )
+
+
+def predict ( reg , X , quantiles = 0.5 , what = None ):
+ """Custom prediction method that allows user-specified function.
+
+ Parameters
+ ----------
+ reg : BaseForestQuantileRegressor
+ Quantile forest model object.
+ X : array-like, of shape (n_samples, n_features)
+ New test data.
+ quantiles : float or list of floats, default=0.5
+ Scalar or vector of quantiles for quantile prediction.
+ what : Any, optional
+ User-specified function for prediction used instead of quantiles.
+ Must return a numeric vector.
+
+ Returns
+ -------
+ Output array with the user-specified function applied (if any).
+ """
+ if what is None :
+ return reg . predict ( X , quantiles = quantiles )
+
+ # Get the complete set of proximities for each sample.
+ proximities = reg . proximity_counts ( X )
+
+ # Retrieve the unsorted training responses from the model (stored in sorted order).
+ reverse_sorter = np . argsort ( reg . sorter_ , axis = 0 )
+ y_train = np . empty_like ( reg . forest_ . y_train ) . T
+ for i in range ( y_train . shape [ 1 ]):
+ y_train [:, i ] = np . asarray ( reg . forest_ . y_train )[ i , reverse_sorter [:, i ]]
+
+ # For each sample, construct an array of the training responses used for prediction.
+ s = [ np . concatenate ([ np . repeat ( y_train [ i [ 0 ]], i [ 1 ]) for i in prox ]) for prox in proximities ]
+
+ # Apply the user-specified function for each sample. Must return a numeric vector.
+ y_out = np . array ([ what ( s_i ) for s_i in s ])
+
+ return y_out
+
+
+X , y = datasets . load_diabetes ( return_X_y = True )
+X_train , X_test , y_train , y_test = train_test_split ( X , y , test_size = 1 , random_state = 0 )
+
+reg = RandomForestQuantileRegressor () . fit ( X_train , y_train )
+
+# Define a user-specified function; here we randomly sample 1000 values with replacement.
+func = lambda x : np . random . choice ( x , size = 1000 )
+
+# Output array with the user-specified function applied to each sample's empirical distribution.
+y_out = predict ( reg , X_test , what = func )
+
+# Calculate the ECDF from output array.
+y_ecdf = [ sp . stats . ecdf ( y_i ) . cdf for y_i in y_out ]
+
+df = pd . DataFrame (
+ {
+ "y_value" : list ( chain . from_iterable ([ y_i . quantiles for y_i in y_ecdf ])),
+ "y_value2" : list ( chain . from_iterable ([ y_i . quantiles for y_i in y_ecdf ]))[ 1 :] + [ np . nan ],
+ "probability" : list ( chain . from_iterable ([ y_i . probabilities for y_i in y_ecdf ])),
+ }
+)
+
+
+def plot_ecdf ( df ):
+ tooltip = [
+ alt . Tooltip ( "y_value" , title = "Response Value" ),
+ alt . Tooltip ( "probability" , title = "Probability" ),
+ ]
+
+ circles = (
+ alt . Chart ( df )
+ . mark_circle ( color = "#006aff" )
+ . encode (
+ x = alt . X ( "y_value" , title = "Response Value" ),
+ y = alt . Y ( "probability" , title = "Probability" ),
+ tooltip = tooltip ,
+ )
+ )
+
+ lines = (
+ alt . Chart ( df )
+ . mark_line ( color = "#006aff" )
+ . encode (
+ x = alt . X ( "y_value" , title = "Response Value" ),
+ x2 = alt . X2 ( "y_value2" ),
+ y = alt . Y ( "probability" , title = "Probability" ),
+ tooltip = tooltip ,
+ )
+ )
+
+ chart = ( circles + lines ) . properties ( height = 400 , width = 650 )
+ return chart
+
+
+chart = plot_ecdf ( df )
+chart
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/gallery/plot_quantile_conformalized.html b/gallery/plot_quantile_conformalized.html
index 977cea8..1d86308 100644
--- a/gallery/plot_quantile_conformalized.html
+++ b/gallery/plot_quantile_conformalized.html
@@ -417,7 +417,7 @@
// embed when document is loaded, to ensure vega library is available
// this works on all modern browsers, except IE8 and older
document.addEventListener("DOMContentLoaded", function(event) {
- var spec = {"config": {"view": {"continuousWidth": 300, "continuousHeight": 300}}, "hconcat": [{"layer": [{"mark": {"type": "bar", "width": 2}, "encoding": {"color": {"condition": {"param": "param_8", "value": "#e0f2ff"}, "value": "lightgray"}, "opacity": {"condition": {"param": "param_8", "value": 0.8}, "value": 0}, "tooltip": [{"field": "y_test", "format": "$,d", "title": "True Price", "type": "quantitative"}, {"field": "y_pred", "format": "$,d", "title": "Predicted Price", "type": "quantitative"}, {"field": "y_pred_low", "format": "$,d", "title": "Predicted Lower Price", "type": "quantitative"}, {"field": "y_pred_upp", "format": "$,d", "title": "Predicted Upper Price", "type": "quantitative"}, {"field": "y_label", "title": "Within Interval", "type": "nominal"}], "x": {"field": "y_pred", "scale": {"domain": [60000, 500000], "padding": 0}, "title": "", "type": "quantitative"}, "y": {"field": "y_pred_low", "scale": {"clamp": true, "domain": [60000, 500000], "padding": 0}, "title": "", "type": "quantitative"}, "y2": {"field": "y_pred_upp", "title": null}}, "transform": [{"calculate": "((datum.y_test >= datum.y_pred_low) & (datum.y_test <= datum.y_pred_upp)) ? 'Yes' : 'No'", "as": "y_label"}]}, {"mark": {"type": "tick", "orient": "horizontal", "thickness": 1, "width": 5}, "encoding": {"color": {"value": "#006aff"}, "opacity": {"condition": {"param": "param_8", "value": 0.4}, "value": 0}, "x": {"field": "y_pred", "title": "", "type": "quantitative"}, "y": {"field": "y_pred_low", "scale": {"clamp": true}, "title": "", "type": "quantitative"}}, "transform": [{"calculate": "((datum.y_test >= datum.y_pred_low) & (datum.y_test <= datum.y_pred_upp)) ? 'Yes' : 'No'", "as": "y_label"}]}, {"mark": {"type": "tick", "orient": "horizontal", "thickness": 1, "width": 5}, "encoding": {"color": {"value": "#006aff"}, "opacity": {"condition": {"param": "param_8", "value": 0.4}, "value": 0}, "x": {"field": "y_pred", "title": "", "type": "quantitative"}, "y": {"field": "y_pred_upp", "scale": {"clamp": true}, "title": "", "type": "quantitative"}}, "transform": [{"calculate": "((datum.y_test >= datum.y_pred_low) & (datum.y_test <= datum.y_pred_upp)) ? 'Yes' : 'No'", "as": "y_label"}]}, {"mark": {"type": "circle", "size": 30}, "encoding": {"color": {"condition": {"param": "param_8", "field": "y_label", "scale": {"domain": ["Yes", "No"], "range": ["#f2a619", "red"]}, "title": "Within Interval", "type": "nominal"}, "value": "lightgray"}, "opacity": {"condition": {"param": "param_8", "value": 1}, "value": 0}, "tooltip": [{"field": "y_test", "format": "$,d", "title": "True Price", "type": "quantitative"}, {"field": "y_pred", "format": "$,d", "title": "Predicted Price", "type": "quantitative"}, {"field": "y_pred_low", "format": "$,d", "title": "Predicted Lower Price", "type": "quantitative"}, {"field": "y_pred_upp", "format": "$,d", "title": "Predicted Upper Price", "type": "quantitative"}, {"field": "y_label", "title": "Within Interval", "type": "nominal"}], "x": {"axis": {"format": "$,d"}, "field": "y_pred", "scale": {"domain": [60000, 500000], "nice": false}, "title": "True Prices", "type": "quantitative"}, "y": {"axis": {"format": "$,d"}, "field": "y_test", "scale": {"domain": [60000, 500000], "nice": false}, "title": "Predicted Prices", "type": "quantitative"}}, "name": "view_7", "transform": [{"calculate": "((datum.y_test >= datum.y_pred_low) & (datum.y_test <= datum.y_pred_upp)) ? 'Yes' : 'No'", "as": "y_label"}]}, {"data": {"name": "data-ecc6ebcad6dfda466c706ea03422d0b0"}, "mark": {"type": "line", "color": "black", "opacity": 0.4, "strokeDash": [2, 2]}, "encoding": {"x": {"field": "var1", "type": "quantitative"}, "y": {"field": "var2", "type": "quantitative"}}}, {"data": {"name": "data-c3f858f1e5385c6846b0f9563e88b2bc"}, "mark": {"type": "text", "align": "left", "baseline": "top"}, "encoding": {"text": {"field": "coverage_text", "type": "nominal"}, "x": {"value": 5}, "y": {"value": 5}}, "transform": [{"calculate": "((datum.y_test >= datum.y_pred_low) & (datum.y_test <= datum.y_pred_upp)) ? 'Yes' : 'No'", "as": "y_label"}, {"aggregate": [{"op": "mean", "field": "coverage", "as": "coverage"}], "groupby": ["strategy"]}, {"calculate": "'Coverage: ' + format((datum['coverage'] * 100), '.1f') + '%' + ' (target = 95%)'", "as": "coverage_text"}]}, {"data": {"name": "data-c3f858f1e5385c6846b0f9563e88b2bc"}, "mark": {"type": "text", "align": "left", "baseline": "top"}, "encoding": {"text": {"field": "width_text", "type": "nominal"}, "x": {"value": 5}, "y": {"value": 20}}, "transform": [{"calculate": "((datum.y_test >= datum.y_pred_low) & (datum.y_test <= datum.y_pred_upp)) ? 'Yes' : 'No'", "as": "y_label"}, {"aggregate": [{"op": "mean", "field": "width", "as": "width"}], "groupby": ["strategy"]}, {"calculate": "'Interval Width: ' + format(datum['width'], '$,d')", "as": "width_text"}]}], "height": 225, "title": "Quantile Regression Forest (QRF)", "width": 300}, {"layer": [{"mark": {"type": "bar", "width": 2}, "encoding": {"color": {"condition": {"param": "param_9", "value": "#e0f2ff"}, "value": "lightgray"}, "opacity": {"condition": {"param": "param_9", "value": 0.8}, "value": 0}, "tooltip": [{"field": "y_test", "format": "$,d", "title": "True Price", "type": "quantitative"}, {"field": "y_pred", "format": "$,d", "title": "Predicted Price", "type": "quantitative"}, {"field": "y_pred_low", "format": "$,d", "title": "Predicted Lower Price", "type": "quantitative"}, {"field": "y_pred_upp", "format": "$,d", "title": "Predicted Upper Price", "type": "quantitative"}, {"field": "y_label", "title": "Within Interval", "type": "nominal"}], "x": {"field": "y_pred", "scale": {"domain": [60000, 500000], "padding": 0}, "title": "", "type": "quantitative"}, "y": {"field": "y_pred_low", "scale": {"clamp": true, "domain": [60000, 500000], "padding": 0}, "title": "", "type": "quantitative"}, "y2": {"field": "y_pred_upp", "title": null}}, "transform": [{"calculate": "((datum.y_test >= datum.y_pred_low) & (datum.y_test <= datum.y_pred_upp)) ? 'Yes' : 'No'", "as": "y_label"}]}, {"mark": {"type": "tick", "orient": "horizontal", "thickness": 1, "width": 5}, "encoding": {"color": {"value": "#006aff"}, "opacity": {"condition": {"param": "param_9", "value": 0.4}, "value": 0}, "x": {"field": "y_pred", "title": "", "type": "quantitative"}, "y": {"field": "y_pred_low", "scale": {"clamp": true}, "title": "", "type": "quantitative"}}, "transform": [{"calculate": "((datum.y_test >= datum.y_pred_low) & (datum.y_test <= datum.y_pred_upp)) ? 'Yes' : 'No'", "as": "y_label"}]}, {"mark": {"type": "tick", "orient": "horizontal", "thickness": 1, "width": 5}, "encoding": {"color": {"value": "#006aff"}, "opacity": {"condition": {"param": "param_9", "value": 0.4}, "value": 0}, "x": {"field": "y_pred", "title": "", "type": "quantitative"}, "y": {"field": "y_pred_upp", "scale": {"clamp": true}, "title": "", "type": "quantitative"}}, "transform": [{"calculate": "((datum.y_test >= datum.y_pred_low) & (datum.y_test <= datum.y_pred_upp)) ? 'Yes' : 'No'", "as": "y_label"}]}, {"mark": {"type": "circle", "size": 30}, "encoding": {"color": {"condition": {"param": "param_9", "field": "y_label", "scale": {"domain": ["Yes", "No"], "range": ["#f2a619", "red"]}, "title": "Within Interval", "type": "nominal"}, "value": "lightgray"}, "opacity": {"condition": {"param": "param_9", "value": 1}, "value": 0}, "tooltip": [{"field": "y_test", "format": "$,d", "title": "True Price", "type": "quantitative"}, {"field": "y_pred", "format": "$,d", "title": "Predicted Price", "type": "quantitative"}, {"field": "y_pred_low", "format": "$,d", "title": "Predicted Lower Price", "type": "quantitative"}, {"field": "y_pred_upp", "format": "$,d", "title": "Predicted Upper Price", "type": "quantitative"}, {"field": "y_label", "title": "Within Interval", "type": "nominal"}], "x": {"axis": {"format": "$,d"}, "field": "y_pred", "scale": {"domain": [60000, 500000], "nice": false}, "title": "True Prices", "type": "quantitative"}, "y": {"axis": {"format": "$,d"}, "field": "y_test", "scale": {"domain": [60000, 500000], "nice": false}, "title": "Predicted Prices", "type": "quantitative"}}, "name": "view_8", "transform": [{"calculate": "((datum.y_test >= datum.y_pred_low) & (datum.y_test <= datum.y_pred_upp)) ? 'Yes' : 'No'", "as": "y_label"}]}, {"data": {"name": "data-ecc6ebcad6dfda466c706ea03422d0b0"}, "mark": {"type": "line", "color": "black", "opacity": 0.4, "strokeDash": [2, 2]}, "encoding": {"x": {"field": "var1", "type": "quantitative"}, "y": {"field": "var2", "type": "quantitative"}}}, {"data": {"name": "data-4aec50c53b1ad528ff6f04fd3fe051e0"}, "mark": {"type": "text", "align": "left", "baseline": "top"}, "encoding": {"text": {"field": "coverage_text", "type": "nominal"}, "x": {"value": 5}, "y": {"value": 5}}, "transform": [{"calculate": "((datum.y_test >= datum.y_pred_low) & (datum.y_test <= datum.y_pred_upp)) ? 'Yes' : 'No'", "as": "y_label"}, {"aggregate": [{"op": "mean", "field": "coverage", "as": "coverage"}], "groupby": ["strategy"]}, {"calculate": "'Coverage: ' + format((datum['coverage'] * 100), '.1f') + '%' + ' (target = 95%)'", "as": "coverage_text"}]}, {"data": {"name": "data-4aec50c53b1ad528ff6f04fd3fe051e0"}, "mark": {"type": "text", "align": "left", "baseline": "top"}, "encoding": {"text": {"field": "width_text", "type": "nominal"}, "x": {"value": 5}, "y": {"value": 20}}, "transform": [{"calculate": "((datum.y_test >= datum.y_pred_low) & (datum.y_test <= datum.y_pred_upp)) ? 'Yes' : 'No'", "as": "y_label"}, {"aggregate": [{"op": "mean", "field": "width", "as": "width"}], "groupby": ["strategy"]}, {"calculate": "'Interval Width: ' + format(datum['width'], '$,d')", "as": "width_text"}]}], "data": {"name": "data-4aec50c53b1ad528ff6f04fd3fe051e0"}, "height": 225, "title": "Conformalized Quantile Regression (CQR)", "width": 300}], "data": {"name": "data-c3f858f1e5385c6846b0f9563e88b2bc"}, "params": [{"name": "param_8", "select": {"type": "point", "fields": ["y_label"]}, "bind": "legend", "views": ["view_7"]}, {"name": "param_9", "select": {"type": "point", "fields": ["y_label"]}, "bind": "legend", "views": ["view_8"]}], "$schema": "https://vega.github.io/schema/vega-lite/v5.16.3.json", "datasets": {"data-c3f858f1e5385c6846b0f9563e88b2bc": [{"y_test": 60000.0, "y_pred": 171105.0, "y_pred_low": 83300.0, "y_pred_upp": 335700.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 72000.0, "y_pred": 107937.0, "y_pred_low": 71300.0, "y_pred_upp": 203149.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 73500.0, "y_pred": 141104.99999999997, "y_pred_low": 75000.0, "y_pred_upp": 362317.49999999924, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 75000.0, "y_pred": 121705.99999999999, "y_pred_low": 70617.5, "y_pred_upp": 187500.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 76100.0, "y_pred": 83749.0, "y_pred_low": 73687.5, "y_pred_upp": 96267.49999999985, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 76400.0, "y_pred": 105575.0, "y_pred_low": 79842.5, "y_pred_upp": 183662.49999999985, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 81300.0, "y_pred": 150224.99999999997, "y_pred_low": 71300.0, "y_pred_upp": 405400.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 81800.0, "y_pred": 84399.99999999999, "y_pred_low": 72500.0, "y_pred_upp": 92015.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 82100.0, "y_pred": 84211.99999999999, "y_pred_low": 70000.0, "y_pred_upp": 95200.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 83400.0, "y_pred": 113729.00000000001, "y_pred_low": 74100.0, "y_pred_upp": 182819.99999999985, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 84400.0, "y_pred": 107531.0, "y_pred_low": 67500.0, "y_pred_upp": 174602.49999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 85300.0, "y_pred": 101813.99999999999, "y_pred_low": 75000.0, "y_pred_upp": 179200.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 88800.0, "y_pred": 92826.00000000001, "y_pred_low": 74100.0, "y_pred_upp": 107299.99999999993, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 88900.0, "y_pred": 89269.00000000001, "y_pred_low": 72500.0, "y_pred_upp": 101009.99999999996, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 90500.0, "y_pred": 85789.0, "y_pred_low": 73260.0, "y_pred_upp": 102387.49999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 91400.0, "y_pred": 86178.99999999999, "y_pred_low": 73260.0, "y_pred_upp": 96700.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 91800.0, "y_pred": 95981.0, "y_pred_low": 82400.0, "y_pred_upp": 134857.49999999985, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 93800.0, "y_pred": 125791.99999999999, "y_pred_low": 87500.0, "y_pred_upp": 171400.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 95000.0, "y_pred": 89263.99999999997, "y_pred_low": 70000.0, "y_pred_upp": 159392.49999999965, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 97200.0, "y_pred": 119967.0, "y_pred_low": 74100.0, "y_pred_upp": 231300.00000000003, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 97300.0, "y_pred": 114221.00000000001, "y_pred_low": 80000.0, "y_pred_upp": 147257.49999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 98200.0, "y_pred": 94220.99999999999, "y_pred_low": 71300.0, "y_pred_upp": 142434.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 99700.0, "y_pred": 133413.99999999997, "y_pred_low": 90492.5, "y_pred_upp": 180469.99999999988, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 100000.0, "y_pred": 94888.0, "y_pred_low": 83282.49999999999, "y_pred_upp": 119919.99999999985, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 100400.0, "y_pred": 121184.0, "y_pred_low": 80000.0, "y_pred_upp": 171349.99999999985, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 102000.0, "y_pred": 91503.00000000003, "y_pred_low": 79700.0, "y_pred_upp": 100000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 107000.0, "y_pred": 93344.0, "y_pred_low": 77567.5, "y_pred_upp": 100000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 107900.0, "y_pred": 168431.99999999997, "y_pred_low": 80747.5, "y_pred_upp": 489600.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 107900.0, "y_pred": 117967.0, "y_pred_low": 83472.5, "y_pred_upp": 174525.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 109400.00000000001, "y_pred": 163441.0, "y_pred_low": 118000.0, "y_pred_upp": 208100.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 111700.0, "y_pred": 119914.00000000001, "y_pred_low": 76572.5, "y_pred_upp": 187364.99999999977, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 112500.0, "y_pred": 113234.00000000001, "y_pred_low": 69305.0, "y_pred_upp": 160812.49999999977, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 112500.0, "y_pred": 161444.0, "y_pred_low": 95200.0, "y_pred_upp": 271397.4999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 112799.99999999999, "y_pred": 130051.99999999999, "y_pred_low": 103820.0, "y_pred_upp": 275000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 113900.0, "y_pred": 167705.00000000003, "y_pred_low": 97200.0, "y_pred_upp": 257799.99999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 116100.0, "y_pred": 168533.00000000003, "y_pred_low": 71300.0, "y_pred_upp": 489600.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 116700.0, "y_pred": 128847.0, "y_pred_low": 97500.0, "y_pred_upp": 179200.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 118800.0, "y_pred": 153641.01999999996, "y_pred_low": 83300.0, "y_pred_upp": 243027.49999999974, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 119400.0, "y_pred": 119107.00000000001, "y_pred_low": 80300.0, "y_pred_upp": 138800.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 120100.0, "y_pred": 150923.00000000003, "y_pred_low": 105295.0, "y_pred_upp": 211977.4999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 122000.0, "y_pred": 134041.0, "y_pred_low": 94300.0, "y_pred_upp": 194835.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 122500.00000000001, "y_pred": 149020.03, "y_pred_low": 95500.0, "y_pred_upp": 438915.5249999989, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 122800.0, "y_pred": 222609.99999999997, "y_pred_low": 80000.0, "y_pred_upp": 489600.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 123500.00000000001, "y_pred": 126438.0, "y_pred_low": 98635.0, "y_pred_upp": 171400.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 125000.0, "y_pred": 270215.99999999994, "y_pred_low": 114012.5, "y_pred_upp": 405400.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 126600.0, "y_pred": 134491.0, "y_pred_low": 72630.0, "y_pred_upp": 187500.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 126899.99999999999, "y_pred": 195943.00000000006, "y_pred_low": 109700.0, "y_pred_upp": 323302.49999999977, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 129200.0, "y_pred": 96869.0, "y_pred_low": 67500.0, "y_pred_upp": 132500.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 129500.0, "y_pred": 151848.0, "y_pred_low": 107600.0, "y_pred_upp": 200924.99999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 132900.0, "y_pred": 140501.99999999997, "y_pred_low": 97742.5, "y_pred_upp": 175000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 134900.0, "y_pred": 168749.0, "y_pred_low": 98135.0, "y_pred_upp": 275000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 135300.0, "y_pred": 167590.0, "y_pred_low": 101495.0, "y_pred_upp": 245400.00000000003, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 136700.0, "y_pred": 150194.00000000003, "y_pred_low": 105557.5, "y_pred_upp": 199167.4999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 137500.0, "y_pred": 129276.01000000002, "y_pred_low": 74910.0, "y_pred_upp": 187500.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 137500.0, "y_pred": 119418.0, "y_pred_low": 102200.0, "y_pred_upp": 141700.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 137500.0, "y_pred": 156355.99999999997, "y_pred_low": 89255.0, "y_pred_upp": 250000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 138800.0, "y_pred": 241181.02999999994, "y_pred_low": 106300.0, "y_pred_upp": 428750.52499999874, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 139400.0, "y_pred": 116998.0, "y_pred_low": 94607.5, "y_pred_upp": 145427.49999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 140600.0, "y_pred": 125789.0, "y_pred_low": 87140.0, "y_pred_upp": 171400.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 144800.0, "y_pred": 158872.0, "y_pred_low": 101600.0, "y_pred_upp": 218100.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 147900.0, "y_pred": 160564.0, "y_pred_low": 94037.5, "y_pred_upp": 218100.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 148900.0, "y_pred": 171921.0, "y_pred_low": 144900.0, "y_pred_upp": 218100.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 149700.0, "y_pred": 168381.0, "y_pred_low": 113560.00000000001, "y_pred_upp": 199287.49999999988, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 150500.0, "y_pred": 169733.0, "y_pred_low": 146555.0, "y_pred_upp": 218100.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 150800.0, "y_pred": 132293.00000000003, "y_pred_low": 85977.5, "y_pred_upp": 187500.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 151400.0, "y_pred": 220166.00000000003, "y_pred_low": 168100.0, "y_pred_upp": 261400.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 152500.0, "y_pred": 177321.00000000003, "y_pred_low": 91850.0, "y_pred_upp": 285984.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 153100.0, "y_pred": 226714.01999999996, "y_pred_low": 140600.0, "y_pred_upp": 350000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 154000.0, "y_pred": 161815.00000000003, "y_pred_low": 125582.5, "y_pred_upp": 218100.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 154300.0, "y_pred": 156946.0, "y_pred_low": 89300.0, "y_pred_upp": 182100.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 156300.0, "y_pred": 196425.0, "y_pred_low": 156900.0, "y_pred_upp": 256000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 156500.0, "y_pred": 166163.00000000003, "y_pred_low": 130762.5, "y_pred_upp": 252284.99999999977, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 156600.0, "y_pred": 170488.0, "y_pred_low": 150000.0, "y_pred_upp": 251249.99999999956, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 156900.0, "y_pred": 163193.0, "y_pred_low": 127682.50000000001, "y_pred_upp": 215484.9999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 157300.0, "y_pred": 217560.00000000003, "y_pred_low": 153515.0, "y_pred_upp": 350000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 158200.0, "y_pred": 181597.0, "y_pred_low": 149600.0, "y_pred_upp": 225000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 158300.0, "y_pred": 155272.0, "y_pred_low": 85100.0, "y_pred_upp": 205600.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 158300.0, "y_pred": 190248.00000000003, "y_pred_low": 93567.5, "y_pred_upp": 300577.5, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 159200.0, "y_pred": 178513.0, "y_pred_low": 105040.0, "y_pred_upp": 250000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 159600.0, "y_pred": 172031.0, "y_pred_low": 150000.0, "y_pred_upp": 230994.99999999983, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 160700.0, "y_pred": 173976.99999999997, "y_pred_low": 135800.0, "y_pred_upp": 246187.5, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 161700.0, "y_pred": 186693.99999999997, "y_pred_low": 136397.50000000003, "y_pred_upp": 245400.00000000003, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 161900.0, "y_pred": 179063.0, "y_pred_low": 109700.0, "y_pred_upp": 279804.9999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 162500.0, "y_pred": 189110.00000000003, "y_pred_low": 135400.0, "y_pred_upp": 317532.4999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 162500.0, "y_pred": 147535.01, "y_pred_low": 69305.0, "y_pred_upp": 350000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 162500.0, "y_pred": 255067.99999999997, "y_pred_low": 138355.0, "y_pred_upp": 350000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 163900.0, "y_pred": 235192.00000000003, "y_pred_low": 138355.0, "y_pred_upp": 350000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 164300.0, "y_pred": 186393.99999999997, "y_pred_low": 109700.0, "y_pred_upp": 229100.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 164300.0, "y_pred": 187356.99999999997, "y_pred_low": 133070.0, "y_pred_upp": 277152.49999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 164700.0, "y_pred": 170918.0, "y_pred_low": 146100.0, "y_pred_upp": 213817.49999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 165400.0, "y_pred": 176349.99999999997, "y_pred_low": 153880.0, "y_pred_upp": 208504.99999999985, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 166300.0, "y_pred": 173661.0, "y_pred_low": 128735.0, "y_pred_upp": 215577.49999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 167100.0, "y_pred": 171746.99999999997, "y_pred_low": 135400.0, "y_pred_upp": 218100.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 167900.0, "y_pred": 191804.99999999997, "y_pred_low": 159747.5, "y_pred_upp": 225195.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 169600.0, "y_pred": 149514.99999999997, "y_pred_low": 80000.0, "y_pred_upp": 240000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 170000.0, "y_pred": 184947.99999999997, "y_pred_low": 83300.0, "y_pred_upp": 257799.99999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 170400.0, "y_pred": 154984.99999999994, "y_pred_low": 85100.0, "y_pred_upp": 219000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 171900.0, "y_pred": 174323.02000000002, "y_pred_low": 94465.0, "y_pred_upp": 251890.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 172800.0, "y_pred": 143207.0, "y_pred_low": 79160.00000000001, "y_pred_upp": 207900.00000000003, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 174100.0, "y_pred": 182451.00000000003, "y_pred_low": 157422.5, "y_pred_upp": 228459.99999999988, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 174100.0, "y_pred": 170976.0, "y_pred_low": 149790.0, "y_pred_upp": 218100.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 174200.0, "y_pred": 270272.9999999999, "y_pred_low": 166560.0, "y_pred_upp": 371525.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 176000.0, "y_pred": 183079.0, "y_pred_low": 149600.0, "y_pred_upp": 224620.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 178200.0, "y_pred": 208186.00000000003, "y_pred_low": 158000.0, "y_pred_upp": 317532.4999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 179300.0, "y_pred": 197912.99999999997, "y_pred_low": 139300.0, "y_pred_upp": 291074.99999999924, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 180900.0, "y_pred": 168552.0, "y_pred_low": 149030.0, "y_pred_upp": 195962.5, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 183100.0, "y_pred": 174060.00000000003, "y_pred_low": 137300.0, "y_pred_upp": 240507.4999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 183800.0, "y_pred": 255674.0, "y_pred_low": 177627.5, "y_pred_upp": 418017.49999999866, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 184100.0, "y_pred": 174960.00000000003, "y_pred_low": 109700.0, "y_pred_upp": 235900.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 184600.0, "y_pred": 182739.0, "y_pred_low": 135590.0, "y_pred_upp": 202112.49999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 185300.0, "y_pred": 182806.0, "y_pred_low": 146100.0, "y_pred_upp": 210300.00000000003, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 185600.0, "y_pred": 185742.00000000003, "y_pred_low": 140600.0, "y_pred_upp": 268800.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 186000.0, "y_pred": 200902.99999999997, "y_pred_low": 164582.5, "y_pred_upp": 242550.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 187100.0, "y_pred": 178691.0, "y_pred_low": 118000.0, "y_pred_upp": 277967.49999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 187500.0, "y_pred": 189502.99999999997, "y_pred_low": 165300.0, "y_pred_upp": 206800.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 188300.0, "y_pred": 234620.99999999997, "y_pred_low": 167750.0, "y_pred_upp": 350945.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 188900.0, "y_pred": 177024.0, "y_pred_low": 144375.0, "y_pred_upp": 228005.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 190400.0, "y_pred": 196992.0, "y_pred_low": 150600.0, "y_pred_upp": 241852.50000000003, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 190400.0, "y_pred": 198341.0, "y_pred_low": 168800.0, "y_pred_upp": 261977.49999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 191000.0, "y_pred": 209118.0, "y_pred_low": 156775.0, "y_pred_upp": 312167.4999999996, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 191100.0, "y_pred": 211906.00000000003, "y_pred_low": 165300.0, "y_pred_upp": 263400.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 192400.0, "y_pred": 260806.0, "y_pred_low": 193242.5, "y_pred_upp": 440784.9999999998, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 192600.0, "y_pred": 176888.0, "y_pred_low": 126299.99999999999, "y_pred_upp": 224982.49999999983, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 192600.0, "y_pred": 181525.99999999994, "y_pred_low": 151235.0, "y_pred_upp": 240232.49999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 192900.0, "y_pred": 179616.00000000003, "y_pred_low": 135705.0, "y_pred_upp": 208800.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 193100.0, "y_pred": 253425.00000000006, "y_pred_low": 181700.0, "y_pred_upp": 344789.9999999998, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 193800.0, "y_pred": 206332.0, "y_pred_low": 119750.0, "y_pred_upp": 257799.99999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 194700.0, "y_pred": 188381.0, "y_pred_low": 154569.99999999997, "y_pred_upp": 214627.4999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 197300.0, "y_pred": 191028.00000000003, "y_pred_low": 162990.0, "y_pred_upp": 219200.00000000003, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 197500.0, "y_pred": 182717.00000000003, "y_pred_low": 120760.0, "y_pred_upp": 231217.5, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 198100.0, "y_pred": 194667.0, "y_pred_low": 138012.5, "y_pred_upp": 258412.49999999988, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 198200.0, "y_pred": 193163.00000000003, "y_pred_low": 143400.0, "y_pred_upp": 247739.99999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 200000.0, "y_pred": 179906.0, "y_pred_low": 119400.0, "y_pred_upp": 253582.49999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 200199.99999999997, "y_pred": 227949.99999999997, "y_pred_low": 141532.5, "y_pred_upp": 375000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 202700.0, "y_pred": 202770.00000000003, "y_pred_low": 100000.0, "y_pred_upp": 271300.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 206199.99999999997, "y_pred": 228067.00000000003, "y_pred_low": 111874.99999999999, "y_pred_upp": 299200.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 206300.00000000003, "y_pred": 234164.00000000003, "y_pred_low": 75700.0, "y_pred_upp": 489600.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 206300.00000000003, "y_pred": 214137.00000000003, "y_pred_low": 167330.0, "y_pred_upp": 254199.99999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 209200.0, "y_pred": 198621.99999999997, "y_pred_low": 158000.0, "y_pred_upp": 233970.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 209400.0, "y_pred": 191886.0, "y_pred_low": 159510.00000000003, "y_pred_upp": 228082.4999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 209500.00000000003, "y_pred": 184936.0, "y_pred_low": 146100.0, "y_pred_upp": 291700.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 210200.0, "y_pred": 229082.0, "y_pred_low": 156402.5, "y_pred_upp": 337902.49999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 210200.0, "y_pred": 214801.99999999997, "y_pred_low": 184400.0, "y_pred_upp": 266077.49999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 211300.0, "y_pred": 222906.00000000006, "y_pred_low": 175500.0, "y_pred_upp": 281662.4999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 211500.00000000003, "y_pred": 143533.99999999997, "y_pred_low": 83300.0, "y_pred_upp": 225457.4999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 213400.0, "y_pred": 211461.0, "y_pred_low": 150945.0, "y_pred_upp": 268012.4999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 213800.0, "y_pred": 216574.0, "y_pred_low": 138355.0, "y_pred_upp": 341639.9999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 214500.0, "y_pred": 225764.00000000003, "y_pred_low": 177900.0, "y_pred_upp": 287600.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 215300.0, "y_pred": 211003.99999999997, "y_pred_low": 144570.0, "y_pred_upp": 273997.49999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 215700.0, "y_pred": 218688.00000000003, "y_pred_low": 123072.5, "y_pred_upp": 338900.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 216699.99999999997, "y_pred": 197241.00000000006, "y_pred_low": 109700.0, "y_pred_upp": 256322.49999999988, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 216800.00000000003, "y_pred": 237770.00000000003, "y_pred_low": 201222.5, "y_pred_upp": 287125.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 218200.0, "y_pred": 247285.99999999997, "y_pred_low": 180725.0, "y_pred_upp": 309600.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 218900.0, "y_pred": 198363.0, "y_pred_low": 119400.0, "y_pred_upp": 310279.9999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 219499.99999999997, "y_pred": 255338.00000000003, "y_pred_low": 204927.50000000003, "y_pred_upp": 354992.4999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 221300.0, "y_pred": 216663.0, "y_pred_low": 144800.0, "y_pred_upp": 287629.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 222000.00000000003, "y_pred": 211566.0, "y_pred_low": 165945.0, "y_pred_upp": 276439.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 223200.00000000003, "y_pred": 217149.0, "y_pred_low": 179955.0, "y_pred_upp": 262757.4999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 223400.0, "y_pred": 217598.0, "y_pred_low": 177600.0, "y_pred_upp": 256000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 224200.0, "y_pred": 231874.0, "y_pred_low": 179300.0, "y_pred_upp": 300197.5, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 225800.0, "y_pred": 213075.00000000003, "y_pred_low": 137730.0, "y_pred_upp": 280197.49999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 227700.0, "y_pred": 254475.0, "y_pred_low": 179547.5, "y_pred_upp": 356142.49999999965, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 228100.0, "y_pred": 163004.00000000003, "y_pred_low": 80700.0, "y_pred_upp": 270312.4999999995, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 230600.0, "y_pred": 198964.00000000003, "y_pred_low": 169200.0, "y_pred_upp": 265179.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 231599.99999999997, "y_pred": 210880.0, "y_pred_low": 167152.5, "y_pred_upp": 260029.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 231800.0, "y_pred": 261120.99999999997, "y_pred_low": 218682.49999999997, "y_pred_upp": 314645.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 232600.0, "y_pred": 242450.99999999997, "y_pred_low": 194940.0, "y_pred_upp": 291700.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 233300.00000000003, "y_pred": 245251.99999999997, "y_pred_low": 158057.5, "y_pred_upp": 375000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 234100.00000000003, "y_pred": 244970.00000000003, "y_pred_low": 183297.5, "y_pred_upp": 337379.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 234400.0, "y_pred": 245502.99999999997, "y_pred_low": 205510.0, "y_pred_upp": 298224.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 234500.00000000003, "y_pred": 236288.0, "y_pred_low": 159540.0, "y_pred_upp": 283942.4999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 236000.0, "y_pred": 223378.0, "y_pred_low": 178100.0, "y_pred_upp": 332400.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 238499.99999999997, "y_pred": 170239.0, "y_pred_low": 83300.0, "y_pred_upp": 244307.5, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 240700.0, "y_pred": 323301.0000000001, "y_pred_low": 255900.00000000003, "y_pred_upp": 454094.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 241000.0, "y_pred": 194666.0, "y_pred_low": 97200.0, "y_pred_upp": 271057.4999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 241400.00000000003, "y_pred": 244301.00000000006, "y_pred_low": 200562.50000000003, "y_pred_upp": 309600.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 242200.00000000003, "y_pred": 198350.0, "y_pred_low": 157895.0, "y_pred_upp": 301100.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 243500.0, "y_pred": 194558.00000000003, "y_pred_low": 141900.0, "y_pred_upp": 235100.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 245500.0, "y_pred": 220633.0, "y_pred_low": 163917.5, "y_pred_upp": 290100.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 246200.00000000003, "y_pred": 228927.0, "y_pred_low": 75700.0, "y_pred_upp": 342200.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 247000.00000000003, "y_pred": 235063.00000000006, "y_pred_low": 206500.0, "y_pred_upp": 274682.4999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 247100.0, "y_pred": 268244.0, "y_pred_low": 156300.0, "y_pred_upp": 380229.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 247600.0, "y_pred": 236506.00000000003, "y_pred_low": 207370.0, "y_pred_upp": 283814.9999999998, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 248600.00000000003, "y_pred": 225412.0, "y_pred_low": 164400.0, "y_pred_upp": 335300.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 248900.0, "y_pred": 230356.99999999997, "y_pred_low": 184705.0, "y_pred_upp": 332400.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 250000.0, "y_pred": 358750.0100000001, "y_pred_low": 75000.0, "y_pred_upp": 466099.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 251900.0, "y_pred": 244534.99999999994, "y_pred_low": 178660.0, "y_pred_upp": 336035.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 252800.0, "y_pred": 300544.00000000006, "y_pred_low": 196900.0, "y_pred_upp": 430600.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 253500.0, "y_pred": 257858.0, "y_pred_low": 188180.0, "y_pred_upp": 324499.9999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 254400.0, "y_pred": 244766.00000000003, "y_pred_low": 202090.0, "y_pred_upp": 295600.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 254900.0, "y_pred": 259337.00000000006, "y_pred_low": 168800.0, "y_pred_upp": 430600.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 257300.0, "y_pred": 258146.0000000001, "y_pred_low": 217300.0, "y_pred_upp": 310184.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 257399.99999999997, "y_pred": 241315.00000000003, "y_pred_low": 180725.0, "y_pred_upp": 338900.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 259200.0, "y_pred": 299947.99999999994, "y_pred_low": 246270.0, "y_pred_upp": 345107.4999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 259400.0, "y_pred": 244611.0, "y_pred_low": 199370.0, "y_pred_upp": 275000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 259600.0, "y_pred": 254863.00000000003, "y_pred_low": 168800.0, "y_pred_upp": 430809.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 259600.0, "y_pred": 242994.99999999997, "y_pred_low": 191700.0, "y_pred_upp": 289815.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 261100.00000000003, "y_pred": 264509.0, "y_pred_low": 183297.5, "y_pred_upp": 340632.5, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 261300.0, "y_pred": 243179.0, "y_pred_low": 191700.0, "y_pred_upp": 284900.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 269700.0, "y_pred": 229276.0, "y_pred_low": 149832.5, "y_pred_upp": 337544.9999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 270600.0, "y_pred": 302431.0000000001, "y_pred_low": 232200.0, "y_pred_upp": 430809.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 272900.0, "y_pred": 224498.0, "y_pred_low": 183455.0, "y_pred_upp": 315719.99999999953, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 273800.0, "y_pred": 267402.0, "y_pred_low": 197087.5, "y_pred_upp": 362404.9999999998, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 275000.0, "y_pred": 167930.0, "y_pred_low": 83300.0, "y_pred_upp": 237500.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 275700.0, "y_pred": 258117.99999999997, "y_pred_low": 218590.00000000003, "y_pred_upp": 309600.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 281500.0, "y_pred": 230213.0, "y_pred_low": 179300.0, "y_pred_upp": 326714.9999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 282500.0, "y_pred": 259081.00000000003, "y_pred_low": 207450.0, "y_pred_upp": 356000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 282500.0, "y_pred": 342517.99999999994, "y_pred_low": 247900.0, "y_pred_upp": 424994.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 283500.0, "y_pred": 264522.0, "y_pred_low": 230540.0, "y_pred_upp": 303067.49999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 284800.0, "y_pred": 331173.0, "y_pred_low": 285400.0, "y_pred_upp": 393200.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 287500.0, "y_pred": 234860.00000000003, "y_pred_low": 183455.0, "y_pred_upp": 287629.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 287600.0, "y_pred": 247511.99999999994, "y_pred_low": 196200.0, "y_pred_upp": 306112.49999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 289900.0, "y_pred": 287333.0, "y_pred_low": 225372.49999999997, "y_pred_upp": 378614.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 291700.0, "y_pred": 260988.0, "y_pred_low": 156300.0, "y_pred_upp": 374572.5, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 291900.0, "y_pred": 333905.00000000006, "y_pred_low": 262900.0, "y_pred_upp": 411500.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 292700.0, "y_pred": 300916.0, "y_pred_low": 189842.5, "y_pred_upp": 390707.5, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 293200.0, "y_pred": 226068.00000000003, "y_pred_low": 151950.0, "y_pred_upp": 332400.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 295200.0, "y_pred": 263672.00000000006, "y_pred_low": 206500.0, "y_pred_upp": 335132.49999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 298900.0, "y_pred": 263818.0, "y_pred_low": 187800.0, "y_pred_upp": 370384.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 315600.0, "y_pred": 257358.00000000003, "y_pred_low": 172600.0, "y_pred_upp": 346832.4999999998, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 323500.0, "y_pred": 338515.0, "y_pred_low": 273700.0, "y_pred_upp": 396034.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 325900.0, "y_pred": 315784.00000000006, "y_pred_low": 246010.00000000003, "y_pred_upp": 368757.5, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 330000.0, "y_pred": 311611.00000000006, "y_pred_low": 196165.0, "y_pred_upp": 457800.00000000006, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 331600.0, "y_pred": 198778.99999999997, "y_pred_low": 154830.0, "y_pred_upp": 281249.9999999998, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 332400.0, "y_pred": 328604.99999999994, "y_pred_low": 285400.0, "y_pred_upp": 389800.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 332500.0, "y_pred": 235543.99999999997, "y_pred_low": 182300.0, "y_pred_upp": 294592.4999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 334100.0, "y_pred": 332685.00999999995, "y_pred_low": 259600.0, "y_pred_upp": 471600.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 335000.0, "y_pred": 341430.9999999999, "y_pred_low": 211580.0, "y_pred_upp": 457800.00000000006, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 340000.0, "y_pred": 359916.00000000006, "y_pred_low": 208500.0, "y_pred_upp": 483300.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 340400.0, "y_pred": 323193.0, "y_pred_low": 244100.00000000003, "y_pred_upp": 411500.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 346800.0, "y_pred": 315675.0, "y_pred_low": 232200.0, "y_pred_upp": 405400.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 350000.0, "y_pred": 215596.0, "y_pred_low": 109500.0, "y_pred_upp": 335700.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 352100.0, "y_pred": 404310.01, "y_pred_low": 310480.0, "y_pred_upp": 468987.5, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 352400.0, "y_pred": 292446.0, "y_pred_low": 208500.0, "y_pred_upp": 371620.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 352900.0, "y_pred": 295784.0, "y_pred_low": 215710.00000000003, "y_pred_upp": 396769.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 353900.0, "y_pred": 247798.99999999997, "y_pred_low": 157400.0, "y_pred_upp": 343207.4999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 362900.0, "y_pred": 357760.00000000006, "y_pred_low": 282392.5, "y_pred_upp": 417500.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 370900.0, "y_pred": 359860.0, "y_pred_low": 311950.0, "y_pred_upp": 398600.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 373600.0, "y_pred": 347757.99999999994, "y_pred_low": 273700.0, "y_pred_upp": 398600.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 412500.0, "y_pred": 324954.0, "y_pred_low": 255900.00000000003, "y_pred_upp": 389800.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 415299.99999999994, "y_pred": 346771.00000000006, "y_pred_low": 261922.5, "y_pred_upp": 395369.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 430500.0, "y_pred": 437566.18000000005, "y_pred_low": 354667.5, "y_pred_upp": 500000.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 446200.0, "y_pred": 360752.99999999994, "y_pred_low": 301977.5, "y_pred_upp": 409187.4999999998, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 456300.0, "y_pred": 289154.00000000006, "y_pred_low": 167750.0, "y_pred_upp": 442052.4999999992, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 500000.99999999994, "y_pred": 428066.10000000003, "y_pred_low": 373667.5, "y_pred_upp": 500000.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 500000.99999999994, "y_pred": 403018.02000000014, "y_pred_low": 332600.0, "y_pred_upp": 473804.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 500000.99999999994, "y_pred": 416666.12, "y_pred_low": 348700.0, "y_pred_upp": 500000.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 500000.99999999994, "y_pred": 388914.0, "y_pred_low": 333142.50000000006, "y_pred_upp": 471600.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 500000.99999999994, "y_pred": 155914.99999999997, "y_pred_low": 79302.50000000001, "y_pred_upp": 350000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 500000.99999999994, "y_pred": 403320.0, "y_pred_low": 330307.5, "y_pred_upp": 468987.5, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}], "data-ecc6ebcad6dfda466c706ea03422d0b0": [{"var1": 60000, "var2": 60000}, {"var1": 500000, "var2": 500000}], "data-4aec50c53b1ad528ff6f04fd3fe051e0": [{"y_test": 60000.0, "y_pred": 184519.0, "y_pred_low": 73068.752, "y_pred_upp": 344331.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 72000.0, "y_pred": 106087.00000000001, "y_pred_low": 69451.25199999998, "y_pred_upp": 283898.7479999993, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 73500.0, "y_pred": 127637.99999999999, "y_pred_low": 67468.752, "y_pred_upp": 300938.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 75000.0, "y_pred": 131845.03, "y_pred_low": 62343.751999999986, "y_pred_upp": 351446.7729999972, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 76100.0, "y_pred": 96798.0, "y_pred_low": 64968.751999999986, "y_pred_upp": 254833.74799999924, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 76400.0, "y_pred": 110695.00000000003, "y_pred_low": 72468.752, "y_pred_upp": 179853.7479999999, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 81300.0, "y_pred": 123736.99999999999, "y_pred_low": 67468.752, "y_pred_upp": 322231.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 81800.0, "y_pred": 93169.99999999999, "y_pred_low": 64968.751999999986, "y_pred_upp": 142086.24799999993, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 82100.0, "y_pred": 94288.0, "y_pred_low": 64968.751999999986, "y_pred_upp": 164081.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 83400.0, "y_pred": 130662.02000000002, "y_pred_low": 72168.752, "y_pred_upp": 283168.747999999, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 84400.0, "y_pred": 112016.0, "y_pred_low": 59968.75199999999, "y_pred_upp": 195031.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 85300.0, "y_pred": 107822.00000000001, "y_pred_low": 67468.752, "y_pred_upp": 195031.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 88800.0, "y_pred": 94044.0, "y_pred_low": 74981.252, "y_pred_upp": 142418.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 88900.0, "y_pred": 93908.99999999999, "y_pred_low": 66156.25199999998, "y_pred_upp": 133831.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 90500.0, "y_pred": 95924.00000000001, "y_pred_low": 72168.752, "y_pred_upp": 142418.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 91400.0, "y_pred": 96174.0, "y_pred_low": 74268.75199999998, "y_pred_upp": 134908.748, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 91800.0, "y_pred": 101962.00000000001, "y_pred_low": 72468.752, "y_pred_upp": 158423.74799999993, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 93800.0, "y_pred": 116150.0, "y_pred_low": 79968.752, "y_pred_upp": 187383.74799999985, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 95000.0, "y_pred": 113789.03, "y_pred_low": 64968.751999999986, "y_pred_upp": 349166.77299999713, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 97200.0, "y_pred": 135461.0, "y_pred_low": 72168.752, "y_pred_upp": 200701.24799999993, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 97300.0, "y_pred": 115748.0, "y_pred_low": 72468.752, "y_pred_upp": 152381.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 98200.0, "y_pred": 109026.0, "y_pred_low": 66156.25199999998, "y_pred_upp": 254833.74799999924, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 99700.0, "y_pred": 126139.0, "y_pred_low": 79968.752, "y_pred_upp": 166231.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 100000.0, "y_pred": 102721.0, "y_pred_low": 73878.752, "y_pred_upp": 164663.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 100400.0, "y_pred": 118757.0, "y_pred_low": 68168.752, "y_pred_upp": 214513.74799999982, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 102000.0, "y_pred": 99047.0, "y_pred_low": 77068.75199999998, "y_pred_upp": 171898.74799999958, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 107000.0, "y_pred": 103078.0, "y_pred_low": 75768.75199999998, "y_pred_upp": 166706.24799999993, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 107900.0, "y_pred": 144956.00000000003, "y_pred_low": 73168.752, "y_pred_upp": 346431.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 107900.0, "y_pred": 122857.00000000001, "y_pred_low": 77068.75199999998, "y_pred_upp": 195031.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 109400.00000000001, "y_pred": 149836.0, "y_pred_low": 73168.752, "y_pred_upp": 203031.24800000002, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 111700.0, "y_pred": 128339.0, "y_pred_low": 77153.752, "y_pred_upp": 378931.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 112500.0, "y_pred": 110392.0, "y_pred_low": 59968.75199999999, "y_pred_upp": 148738.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 112500.0, "y_pred": 181942.00999999998, "y_pred_low": 87668.75199999998, "y_pred_upp": 344331.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 112799.99999999999, "y_pred": 121552.99999999997, "y_pred_low": 75966.25199999998, "y_pred_upp": 313736.2479999992, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 113900.0, "y_pred": 177270.99999999997, "y_pred_low": 85306.25199999998, "y_pred_upp": 344331.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 116100.0, "y_pred": 142536.99999999997, "y_pred_low": 68168.752, "y_pred_upp": 346431.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 116700.0, "y_pred": 119287.00000000001, "y_pred_low": 91786.252, "y_pred_upp": 174131.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 118800.0, "y_pred": 213084.14, "y_pred_low": 81421.252, "y_pred_upp": 507532.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 119400.0, "y_pred": 119417.00000000001, "y_pred_low": 73268.752, "y_pred_upp": 150131.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 120100.0, "y_pred": 163081.0, "y_pred_low": 89011.25199999998, "y_pred_upp": 339931.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 122000.0, "y_pred": 130077.99999999999, "y_pred_low": 72468.752, "y_pred_upp": 194833.748, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 122500.00000000001, "y_pred": 106093.0, "y_pred_low": 67468.752, "y_pred_upp": 156358.7479999998, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 122800.0, "y_pred": 164975.00000000003, "y_pred_low": 72468.752, "y_pred_upp": 346431.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 123500.00000000001, "y_pred": 129545.99999999999, "y_pred_low": 86726.252, "y_pred_upp": 178931.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 125000.0, "y_pred": 277066.99999999994, "y_pred_low": 73068.752, "y_pred_upp": 382531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 126600.0, "y_pred": 131433.0, "y_pred_low": 71486.252, "y_pred_upp": 195031.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 126899.99999999999, "y_pred": 202986.00000000006, "y_pred_low": 127396.252, "y_pred_upp": 269776.2479999999, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 129200.0, "y_pred": 108434.00000000001, "y_pred_low": 59968.75199999999, "y_pred_upp": 187383.74799999985, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 129500.0, "y_pred": 161321.0, "y_pred_low": 86768.75199999998, "y_pred_upp": 285781.24799999903, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 132900.0, "y_pred": 146180.00000000003, "y_pred_low": 99968.75199999998, "y_pred_upp": 226331.24800000002, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 134900.0, "y_pred": 172505.99999999997, "y_pred_low": 78968.752, "y_pred_upp": 323853.7479999994, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 135300.0, "y_pred": 173968.0, "y_pred_low": 89643.752, "y_pred_upp": 239633.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 136700.0, "y_pred": 166898.00000000003, "y_pred_low": 108998.752, "y_pred_upp": 339931.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 137500.0, "y_pred": 142186.03999999998, "y_pred_low": 59968.75199999999, "y_pred_upp": 507532.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 137500.0, "y_pred": 116327.0, "y_pred_low": 73268.752, "y_pred_upp": 147531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 137500.0, "y_pred": 154746.0, "y_pred_low": 86923.752, "y_pred_upp": 229538.748, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 138800.0, "y_pred": 204300.01, "y_pred_low": 81421.252, "y_pred_upp": 357531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 139400.0, "y_pred": 114547.00000000001, "y_pred_low": 81768.752, "y_pred_upp": 160893.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 140600.0, "y_pred": 118280.99999999999, "y_pred_low": 79758.752, "y_pred_upp": 178931.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 144800.0, "y_pred": 160012.0, "y_pred_low": 72753.752, "y_pred_upp": 226331.24800000002, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 147900.0, "y_pred": 169470.00000000003, "y_pred_low": 72468.752, "y_pred_upp": 228568.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 148900.0, "y_pred": 176714.0, "y_pred_low": 134273.752, "y_pred_upp": 228778.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 149700.0, "y_pred": 176232.0, "y_pred_low": 134803.752, "y_pred_upp": 213496.24799999988, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 150500.0, "y_pred": 183037.0, "y_pred_low": 128866.25200000001, "y_pred_upp": 241288.74799999985, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 150800.0, "y_pred": 126722.0, "y_pred_low": 79968.752, "y_pred_upp": 187383.74799999985, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 151400.0, "y_pred": 215934.00000000006, "y_pred_low": 144511.25199999998, "y_pred_upp": 282166.2479999999, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 152500.0, "y_pred": 180152.99999999997, "y_pred_low": 95898.752, "y_pred_upp": 297631.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 153100.0, "y_pred": 204900.0, "y_pred_low": 81896.25199999998, "y_pred_upp": 344331.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 154000.0, "y_pred": 164302.00000000003, "y_pred_low": 87018.752, "y_pred_upp": 225631.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 154300.0, "y_pred": 162001.00000000003, "y_pred_low": 81438.752, "y_pred_upp": 225631.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 156300.0, "y_pred": 198247.00000000003, "y_pred_low": 142468.752, "y_pred_upp": 242831.24800000002, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 156500.0, "y_pred": 178095.99999999997, "y_pred_low": 116301.252, "y_pred_upp": 339931.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 156600.0, "y_pred": 175883.0, "y_pred_low": 139791.252, "y_pred_upp": 229938.748, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 156900.0, "y_pred": 169217.00000000003, "y_pred_low": 104361.252, "y_pred_upp": 312031.24799999944, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 157300.0, "y_pred": 200155.0, "y_pred_low": 143466.252, "y_pred_upp": 344331.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 158200.0, "y_pred": 182942.00000000003, "y_pred_low": 145746.252, "y_pred_upp": 225631.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 158300.0, "y_pred": 155750.02, "y_pred_low": 76386.252, "y_pred_upp": 207668.7479999999, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 158300.0, "y_pred": 205930.0, "y_pred_low": 73068.752, "y_pred_upp": 324541.24799999973, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 159200.0, "y_pred": 202021.0, "y_pred_low": 101368.752, "y_pred_upp": 344331.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 159600.0, "y_pred": 178571.0, "y_pred_low": 144511.25199999998, "y_pred_upp": 228731.24800000002, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 160700.0, "y_pred": 174362.0, "y_pred_low": 81428.752, "y_pred_upp": 256613.74799999982, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 161700.0, "y_pred": 184357.0, "y_pred_low": 107971.25200000002, "y_pred_upp": 278831.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 161900.0, "y_pred": 200535.00000000003, "y_pred_low": 110568.75200000001, "y_pred_upp": 339931.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 162500.0, "y_pred": 191686.0, "y_pred_low": 127868.75200000001, "y_pred_upp": 339931.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 162500.0, "y_pred": 167174.12, "y_pred_low": 59968.75199999999, "y_pred_upp": 507532.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 162500.0, "y_pred": 237370.0, "y_pred_low": 136058.752, "y_pred_upp": 339931.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 163900.0, "y_pred": 193083.0, "y_pred_low": 75768.75199999998, "y_pred_upp": 305476.24799999926, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 164300.0, "y_pred": 190763.00000000003, "y_pred_low": 137268.752, "y_pred_upp": 227328.748, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 164300.0, "y_pred": 183723.0, "y_pred_low": 79628.752, "y_pred_upp": 279791.24799999985, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 164700.0, "y_pred": 171422.0, "y_pred_low": 146768.75199999998, "y_pred_upp": 224681.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 165400.0, "y_pred": 178258.00000000003, "y_pred_low": 144511.25199999998, "y_pred_upp": 216623.748, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 166300.0, "y_pred": 180149.0, "y_pred_low": 110468.752, "y_pred_upp": 252338.74799999976, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 167100.0, "y_pred": 172549.0, "y_pred_low": 118733.75200000001, "y_pred_upp": 233696.24799999988, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 167900.0, "y_pred": 186980.0, "y_pred_low": 144568.75199999998, "y_pred_upp": 227243.748, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 169600.0, "y_pred": 164744.0, "y_pred_low": 68168.752, "y_pred_upp": 322231.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 170000.0, "y_pred": 196823.00000000003, "y_pred_low": 95383.752, "y_pred_upp": 276331.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 170400.0, "y_pred": 153254.02, "y_pred_low": 75768.75199999998, "y_pred_upp": 198496.24799999993, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 171900.0, "y_pred": 216135.14, "y_pred_low": 81421.252, "y_pred_upp": 507532.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 172800.0, "y_pred": 142187.99999999997, "y_pred_low": 70211.252, "y_pred_upp": 346431.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 174100.0, "y_pred": 186838.00000000003, "y_pred_low": 149368.752, "y_pred_upp": 242831.24800000002, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 174100.0, "y_pred": 184408.00000000003, "y_pred_low": 138268.752, "y_pred_upp": 292763.74799999915, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 174200.0, "y_pred": 260238.0, "y_pred_low": 148768.75199999998, "y_pred_upp": 397031.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 176000.0, "y_pred": 179903.0, "y_pred_low": 110468.752, "y_pred_upp": 225998.748, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 178200.0, "y_pred": 206374.0, "y_pred_low": 152063.752, "y_pred_upp": 279078.7479999995, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 179300.0, "y_pred": 212790.99999999994, "y_pred_low": 153218.752, "y_pred_upp": 339931.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 180900.0, "y_pred": 177725.0, "y_pred_low": 124613.752, "y_pred_upp": 228778.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 183100.0, "y_pred": 174437.00000000003, "y_pred_low": 122933.75200000001, "y_pred_upp": 248523.748, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 183800.0, "y_pred": 232357.0, "y_pred_low": 160906.252, "y_pred_upp": 280931.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 184100.0, "y_pred": 192408.00000000006, "y_pred_low": 125068.75200000001, "y_pred_upp": 278831.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 184600.0, "y_pred": 178148.00000000003, "y_pred_low": 118768.752, "y_pred_upp": 226208.748, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 185300.0, "y_pred": 184449.00000000003, "y_pred_low": 149986.252, "y_pred_upp": 236846.2479999999, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 185600.0, "y_pred": 195564.00000000003, "y_pred_low": 133436.252, "y_pred_upp": 319678.74799999956, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 186000.0, "y_pred": 206459.0, "y_pred_low": 148003.752, "y_pred_upp": 263831.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 187100.0, "y_pred": 179314.99999999997, "y_pred_low": 108998.752, "y_pred_upp": 339931.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 187500.0, "y_pred": 190482.0, "y_pred_low": 151716.252, "y_pred_upp": 247531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 188300.0, "y_pred": 223343.00000000003, "y_pred_low": 157273.752, "y_pred_upp": 306931.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 188900.0, "y_pred": 179728.99999999997, "y_pred_low": 127501.252, "y_pred_upp": 230446.24799999993, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 190400.0, "y_pred": 188725.0, "y_pred_low": 142311.25199999998, "y_pred_upp": 249431.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 190400.0, "y_pred": 197749.99999999994, "y_pred_low": 118768.752, "y_pred_upp": 286631.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 191000.0, "y_pred": 200088.0, "y_pred_low": 148768.75199999998, "y_pred_upp": 272231.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 191100.0, "y_pred": 216453.00000000006, "y_pred_low": 151716.252, "y_pred_upp": 349731.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 192400.0, "y_pred": 247622.0, "y_pred_low": 181291.252, "y_pred_upp": 382531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 192600.0, "y_pred": 175120.99999999997, "y_pred_low": 72468.752, "y_pred_upp": 292406.2479999999, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 192600.0, "y_pred": 183669.00000000003, "y_pred_low": 147718.752, "y_pred_upp": 246243.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 192900.0, "y_pred": 173288.00000000003, "y_pred_low": 118768.752, "y_pred_upp": 226398.748, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 193100.0, "y_pred": 251801.00000000003, "y_pred_low": 174168.752, "y_pred_upp": 339931.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 193800.0, "y_pred": 203953.99999999997, "y_pred_low": 87668.75199999998, "y_pred_upp": 344331.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 194700.0, "y_pred": 184473.00000000003, "y_pred_low": 114411.252, "y_pred_upp": 238648.74799999982, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 197300.0, "y_pred": 187564.0, "y_pred_low": 136153.752, "y_pred_upp": 227781.24800000002, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 197500.0, "y_pred": 192025.0, "y_pred_low": 132808.752, "y_pred_upp": 278831.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 198100.0, "y_pred": 184761.0, "y_pred_low": 108788.752, "y_pred_upp": 280108.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 198200.0, "y_pred": 191716.0, "y_pred_low": 135868.75199999998, "y_pred_upp": 277638.7479999999, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 200000.0, "y_pred": 185756.99999999997, "y_pred_low": 73068.752, "y_pred_upp": 284331.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 200199.99999999997, "y_pred": 239979.00000000003, "y_pred_low": 159268.75199999998, "y_pred_upp": 382531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 202700.0, "y_pred": 216067.0, "y_pred_low": 136268.75199999998, "y_pred_upp": 280931.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 206199.99999999997, "y_pred": 230907.00000000003, "y_pred_low": 157536.25199999998, "y_pred_upp": 362763.74799999973, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 206300.00000000003, "y_pred": 195864.01000000004, "y_pred_low": 68168.752, "y_pred_upp": 378931.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 206300.00000000003, "y_pred": 203765.99999999997, "y_pred_low": 125068.75200000001, "y_pred_upp": 269973.74799999985, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 209200.0, "y_pred": 209581.00000000003, "y_pred_low": 155468.75199999998, "y_pred_upp": 297288.74799999985, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 209400.0, "y_pred": 195949.00000000003, "y_pred_low": 139791.252, "y_pred_upp": 229376.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 209500.00000000003, "y_pred": 195715.00000000003, "y_pred_low": 123091.252, "y_pred_upp": 339931.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 210200.0, "y_pred": 218024.0, "y_pred_low": 136796.252, "y_pred_upp": 292431.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 210200.0, "y_pred": 208519.0, "y_pred_low": 145203.752, "y_pred_upp": 283476.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 211300.0, "y_pred": 215735.99999999997, "y_pred_low": 173168.75199999998, "y_pred_upp": 277231.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 211500.00000000003, "y_pred": 164125.00999999998, "y_pred_low": 75768.75199999998, "y_pred_upp": 344331.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 213400.0, "y_pred": 215147.99999999997, "y_pred_low": 138268.752, "y_pred_upp": 339931.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 213800.0, "y_pred": 212272.00000000003, "y_pred_low": 108941.252, "y_pred_upp": 339931.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 214500.0, "y_pred": 221697.0, "y_pred_low": 163073.752, "y_pred_upp": 295131.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 215300.0, "y_pred": 203728.0, "y_pred_low": 125068.75200000001, "y_pred_upp": 283476.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 215700.0, "y_pred": 188361.99999999997, "y_pred_low": 88868.75199999998, "y_pred_upp": 334936.2479999998, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 216699.99999999997, "y_pred": 191385.00000000003, "y_pred_low": 112798.75200000001, "y_pred_upp": 247331.24800000002, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 216800.00000000003, "y_pred": 224080.0, "y_pred_low": 181196.252, "y_pred_upp": 295131.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 218200.0, "y_pred": 228351.99999999997, "y_pred_low": 139791.252, "y_pred_upp": 346431.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 218900.0, "y_pred": 198722.00000000003, "y_pred_low": 73068.752, "y_pred_upp": 350676.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 219499.99999999997, "y_pred": 252358.00000000003, "y_pred_low": 198026.252, "y_pred_upp": 337731.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 221300.0, "y_pred": 214187.0, "y_pred_low": 136058.752, "y_pred_upp": 346431.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 222000.00000000003, "y_pred": 210299.0, "y_pred_low": 171698.752, "y_pred_upp": 259508.74799999993, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 223200.00000000003, "y_pred": 221461.0, "y_pred_low": 165168.752, "y_pred_upp": 252213.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 223400.0, "y_pred": 219190.0, "y_pred_low": 173168.75199999998, "y_pred_upp": 242831.24800000002, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 224200.0, "y_pred": 224512.0, "y_pred_low": 136743.752, "y_pred_upp": 345433.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 225800.0, "y_pred": 212499.99999999994, "y_pred_low": 125068.75200000001, "y_pred_upp": 360721.2479999997, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 227700.0, "y_pred": 267950.00000000006, "y_pred_low": 169391.252, "y_pred_upp": 382531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 228100.0, "y_pred": 165409.00000000003, "y_pred_low": 72753.752, "y_pred_upp": 329813.7479999998, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 230600.0, "y_pred": 196277.0, "y_pred_low": 154838.75199999998, "y_pred_upp": 247631.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 231599.99999999997, "y_pred": 210740.99999999997, "y_pred_low": 154106.252, "y_pred_upp": 271601.2479999999, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 231800.0, "y_pred": 249625.01, "y_pred_low": 190568.752, "y_pred_upp": 323461.24799999973, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 232600.0, "y_pred": 227616.0, "y_pred_low": 181933.75199999998, "y_pred_upp": 295131.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 233300.00000000003, "y_pred": 258028.99999999994, "y_pred_low": 136468.752, "y_pred_upp": 382531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 234100.00000000003, "y_pred": 234312.00000000003, "y_pred_low": 181001.252, "y_pred_upp": 279268.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 234400.0, "y_pred": 238042.0, "y_pred_low": 193928.752, "y_pred_upp": 268653.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 234500.00000000003, "y_pred": 215713.00000000003, "y_pred_low": 140213.75199999998, "y_pred_upp": 317811.24799999944, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 236000.0, "y_pred": 221782.0, "y_pred_low": 174168.752, "y_pred_upp": 324541.24799999973, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 238499.99999999997, "y_pred": 204461.0, "y_pred_low": 75768.75199999998, "y_pred_upp": 382531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 240700.0, "y_pred": 326086.0, "y_pred_low": 266168.75200000004, "y_pred_upp": 468871.24799999985, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 241000.0, "y_pred": 190292.0, "y_pred_low": 89668.75199999998, "y_pred_upp": 272651.2479999998, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 241400.00000000003, "y_pred": 231620.00000000003, "y_pred_low": 205181.25199999998, "y_pred_upp": 270353.74799999985, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 242200.00000000003, "y_pred": 201175.00000000006, "y_pred_low": 155468.75199999998, "y_pred_upp": 243146.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 243500.0, "y_pred": 189749.00000000003, "y_pred_low": 140263.752, "y_pred_upp": 234531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 245500.0, "y_pred": 211987.0, "y_pred_low": 135868.75199999998, "y_pred_upp": 339733.74799999926, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 246200.00000000003, "y_pred": 226762.0, "y_pred_low": 103563.75200000001, "y_pred_upp": 349731.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 247000.00000000003, "y_pred": 232397.0, "y_pred_low": 183953.75199999998, "y_pred_upp": 295131.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 247100.0, "y_pred": 240267.0, "y_pred_low": 73068.752, "y_pred_upp": 382931.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 247600.0, "y_pred": 230568.99999999997, "y_pred_low": 197378.752, "y_pred_upp": 277231.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 248600.00000000003, "y_pred": 233616.0, "y_pred_low": 161268.75199999998, "y_pred_upp": 322231.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 248900.0, "y_pred": 248050.99999999997, "y_pred_low": 173643.752, "y_pred_upp": 360406.2479999997, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 250000.0, "y_pred": 362950.00000000006, "y_pred_low": 266168.75200000004, "y_pred_upp": 457531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 251900.0, "y_pred": 246993.99999999997, "y_pred_low": 160338.752, "y_pred_upp": 349731.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 252800.0, "y_pred": 280315.00000000006, "y_pred_low": 179393.752, "y_pred_upp": 350248.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 253500.0, "y_pred": 261592.0, "y_pred_low": 188633.752, "y_pred_upp": 344231.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 254400.0, "y_pred": 232801.00000000003, "y_pred_low": 166921.25199999998, "y_pred_upp": 276398.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 254900.0, "y_pred": 251764.0, "y_pred_low": 165068.752, "y_pred_upp": 333203.7479999998, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 257300.0, "y_pred": 244560.00000000006, "y_pred_low": 194558.752, "y_pred_upp": 301956.2479999999, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 257399.99999999997, "y_pred": 222975.0, "y_pred_low": 162053.752, "y_pred_upp": 320781.24799999956, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 259200.0, "y_pred": 324060.99999999994, "y_pred_low": 245558.75199999998, "y_pred_upp": 425208.74799999956, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 259400.0, "y_pred": 236294.00000000006, "y_pred_low": 174768.752, "y_pred_upp": 282531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 259600.0, "y_pred": 235144.00000000003, "y_pred_low": 161268.75199999998, "y_pred_upp": 295131.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 259600.0, "y_pred": 225273.0, "y_pred_low": 136058.752, "y_pred_upp": 295161.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 261100.00000000003, "y_pred": 224750.0, "y_pred_low": 154491.252, "y_pred_upp": 308076.24799999973, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 261300.0, "y_pred": 240064.0, "y_pred_low": 171768.75199999998, "y_pred_upp": 311448.7479999998, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 269700.0, "y_pred": 209053.99999999997, "y_pred_low": 132771.252, "y_pred_upp": 349731.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 270600.0, "y_pred": 313325.0, "y_pred_low": 243051.252, "y_pred_upp": 397031.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 272900.0, "y_pred": 229093.00000000003, "y_pred_low": 149191.252, "y_pred_upp": 346431.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 273800.0, "y_pred": 258294.99999999994, "y_pred_low": 175968.752, "y_pred_upp": 397031.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 275000.0, "y_pred": 190679.0, "y_pred_low": 75768.75199999998, "y_pred_upp": 349731.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 275700.0, "y_pred": 243535.99999999997, "y_pred_low": 178486.25199999998, "y_pred_upp": 292431.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 281500.0, "y_pred": 211329.99999999997, "y_pred_low": 166158.75199999998, "y_pred_upp": 348163.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 282500.0, "y_pred": 323391.0, "y_pred_low": 221886.252, "y_pred_upp": 426331.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 282500.0, "y_pred": 323145.0, "y_pred_low": 277868.75200000004, "y_pred_upp": 397331.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 283500.0, "y_pred": 241575.00000000006, "y_pred_low": 203243.75199999998, "y_pred_upp": 308131.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 284800.0, "y_pred": 342742.01, "y_pred_low": 277868.75200000004, "y_pred_upp": 397331.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 287500.0, "y_pred": 231684.0, "y_pred_low": 171768.75199999998, "y_pred_upp": 346431.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 287600.0, "y_pred": 237723.0, "y_pred_low": 177636.252, "y_pred_upp": 295131.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 289900.0, "y_pred": 292519.00000000006, "y_pred_low": 179863.752, "y_pred_upp": 397031.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 291700.0, "y_pred": 241387.99999999997, "y_pred_low": 142206.25199999998, "y_pred_upp": 379531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 291900.0, "y_pred": 330302.01, "y_pred_low": 249233.752, "y_pred_upp": 398013.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 292700.0, "y_pred": 303075.0, "y_pred_low": 169391.252, "y_pred_upp": 397031.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 293200.0, "y_pred": 254469.0, "y_pred_low": 173168.75199999998, "y_pred_upp": 382531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 295200.0, "y_pred": 260230.01000000004, "y_pred_low": 190306.252, "y_pred_upp": 377298.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 298900.0, "y_pred": 275270.00000000006, "y_pred_low": 176686.252, "y_pred_upp": 346616.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 315600.0, "y_pred": 256499.0, "y_pred_low": 154368.752, "y_pred_upp": 382531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 323500.0, "y_pred": 345709.0000000001, "y_pred_low": 266168.75200000004, "y_pred_upp": 398998.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 325900.0, "y_pred": 338785.00000000006, "y_pred_low": 266168.75200000004, "y_pred_upp": 398631.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 330000.0, "y_pred": 293049.0, "y_pred_low": 175946.252, "y_pred_upp": 392131.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 331600.0, "y_pred": 197307.00000000006, "y_pred_low": 127868.75200000001, "y_pred_upp": 339931.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 332400.0, "y_pred": 328930.01, "y_pred_low": 277868.75200000004, "y_pred_upp": 397331.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 332500.0, "y_pred": 245559.0, "y_pred_low": 149578.75199999998, "y_pred_upp": 334936.2479999998, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 334100.0, "y_pred": 342955.00000000006, "y_pred_low": 249233.752, "y_pred_upp": 479131.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 335000.0, "y_pred": 305983.0, "y_pred_low": 136468.752, "y_pred_upp": 397031.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 340000.0, "y_pred": 337917.0, "y_pred_low": 255931.25199999998, "y_pred_upp": 380726.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 340400.0, "y_pred": 347732.0, "y_pred_low": 233168.752, "y_pred_upp": 457531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 346800.0, "y_pred": 286501.0, "y_pred_low": 185973.752, "y_pred_upp": 379701.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 350000.0, "y_pred": 224256.0, "y_pred_low": 134168.752, "y_pred_upp": 279933.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 352100.0, "y_pred": 386298.0200000001, "y_pred_low": 295251.252, "y_pred_upp": 479131.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 352400.0, "y_pred": 337248.99999999994, "y_pred_low": 239581.25199999998, "y_pred_upp": 378731.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 352900.0, "y_pred": 289200.9999999999, "y_pred_low": 231676.252, "y_pred_upp": 344546.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 353900.0, "y_pred": 235173.0, "y_pred_low": 136268.75199999998, "y_pred_upp": 287728.7479999999, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 362900.0, "y_pred": 360993.00000000006, "y_pred_low": 266168.75200000004, "y_pred_upp": 402061.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 370900.0, "y_pred": 369863.00000000006, "y_pred_low": 330851.252, "y_pred_upp": 406131.2480000001, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 373600.0, "y_pred": 371032.0, "y_pred_low": 303968.75200000004, "y_pred_upp": 406131.2480000001, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 412500.0, "y_pred": 351789.00999999995, "y_pred_low": 277868.75200000004, "y_pred_upp": 457531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 415299.99999999994, "y_pred": 343026.99999999994, "y_pred_low": 263368.752, "y_pred_upp": 399331.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 430500.0, "y_pred": 425862.1000000001, "y_pred_low": 349768.752, "y_pred_upp": 507532.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 446200.0, "y_pred": 358627.0, "y_pred_low": 323868.752, "y_pred_upp": 399331.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 456300.0, "y_pred": 277731.00000000006, "y_pred_low": 183868.75199999998, "y_pred_upp": 397031.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 500000.99999999994, "y_pred": 426170.17000000004, "y_pred_low": 343668.752, "y_pred_upp": 507532.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 500000.99999999994, "y_pred": 397099.0400000001, "y_pred_low": 298246.252, "y_pred_upp": 507532.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 500000.99999999994, "y_pred": 417150.22, "y_pred_low": 323868.752, "y_pred_upp": 507532.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 500000.99999999994, "y_pred": 388209.00000000006, "y_pred_low": 324771.25200000004, "y_pred_upp": 479131.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 500000.99999999994, "y_pred": 141564.06, "y_pred_low": 64968.751999999986, "y_pred_upp": 507532.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 500000.99999999994, "y_pred": 401817.10000000003, "y_pred_low": 323028.75200000004, "y_pred_upp": 507532.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}]}};
+ var spec = {"config": {"view": {"continuousWidth": 300, "continuousHeight": 300}}, "hconcat": [{"layer": [{"mark": {"type": "bar", "width": 2}, "encoding": {"color": {"condition": {"param": "param_6", "value": "#e0f2ff"}, "value": "lightgray"}, "opacity": {"condition": {"param": "param_6", "value": 0.8}, "value": 0}, "tooltip": [{"field": "y_test", "format": "$,d", "title": "True Price", "type": "quantitative"}, {"field": "y_pred", "format": "$,d", "title": "Predicted Price", "type": "quantitative"}, {"field": "y_pred_low", "format": "$,d", "title": "Predicted Lower Price", "type": "quantitative"}, {"field": "y_pred_upp", "format": "$,d", "title": "Predicted Upper Price", "type": "quantitative"}, {"field": "y_label", "title": "Within Interval", "type": "nominal"}], "x": {"field": "y_pred", "scale": {"domain": [60000, 500000], "padding": 0}, "title": "", "type": "quantitative"}, "y": {"field": "y_pred_low", "scale": {"clamp": true, "domain": [60000, 500000], "padding": 0}, "title": "", "type": "quantitative"}, "y2": {"field": "y_pred_upp", "title": null}}, "transform": [{"calculate": "((datum.y_test >= datum.y_pred_low) & (datum.y_test <= datum.y_pred_upp)) ? 'Yes' : 'No'", "as": "y_label"}]}, {"mark": {"type": "tick", "orient": "horizontal", "thickness": 1, "width": 5}, "encoding": {"color": {"value": "#006aff"}, "opacity": {"condition": {"param": "param_6", "value": 0.4}, "value": 0}, "x": {"field": "y_pred", "title": "", "type": "quantitative"}, "y": {"field": "y_pred_low", "scale": {"clamp": true}, "title": "", "type": "quantitative"}}, "transform": [{"calculate": "((datum.y_test >= datum.y_pred_low) & (datum.y_test <= datum.y_pred_upp)) ? 'Yes' : 'No'", "as": "y_label"}]}, {"mark": {"type": "tick", "orient": "horizontal", "thickness": 1, "width": 5}, "encoding": {"color": {"value": "#006aff"}, "opacity": {"condition": {"param": "param_6", "value": 0.4}, "value": 0}, "x": {"field": "y_pred", "title": "", "type": "quantitative"}, "y": {"field": "y_pred_upp", "scale": {"clamp": true}, "title": "", "type": "quantitative"}}, "transform": [{"calculate": "((datum.y_test >= datum.y_pred_low) & (datum.y_test <= datum.y_pred_upp)) ? 'Yes' : 'No'", "as": "y_label"}]}, {"mark": {"type": "circle", "size": 30}, "encoding": {"color": {"condition": {"param": "param_6", "field": "y_label", "scale": {"domain": ["Yes", "No"], "range": ["#f2a619", "red"]}, "title": "Within Interval", "type": "nominal"}, "value": "lightgray"}, "opacity": {"condition": {"param": "param_6", "value": 1}, "value": 0}, "tooltip": [{"field": "y_test", "format": "$,d", "title": "True Price", "type": "quantitative"}, {"field": "y_pred", "format": "$,d", "title": "Predicted Price", "type": "quantitative"}, {"field": "y_pred_low", "format": "$,d", "title": "Predicted Lower Price", "type": "quantitative"}, {"field": "y_pred_upp", "format": "$,d", "title": "Predicted Upper Price", "type": "quantitative"}, {"field": "y_label", "title": "Within Interval", "type": "nominal"}], "x": {"axis": {"format": "$,d"}, "field": "y_pred", "scale": {"domain": [60000, 500000], "nice": false}, "title": "True Prices", "type": "quantitative"}, "y": {"axis": {"format": "$,d"}, "field": "y_test", "scale": {"domain": [60000, 500000], "nice": false}, "title": "Predicted Prices", "type": "quantitative"}}, "name": "view_5", "transform": [{"calculate": "((datum.y_test >= datum.y_pred_low) & (datum.y_test <= datum.y_pred_upp)) ? 'Yes' : 'No'", "as": "y_label"}]}, {"data": {"name": "data-ecc6ebcad6dfda466c706ea03422d0b0"}, "mark": {"type": "line", "color": "black", "opacity": 0.4, "strokeDash": [2, 2]}, "encoding": {"x": {"field": "var1", "type": "quantitative"}, "y": {"field": "var2", "type": "quantitative"}}}, {"data": {"name": "data-c3f858f1e5385c6846b0f9563e88b2bc"}, "mark": {"type": "text", "align": "left", "baseline": "top"}, "encoding": {"text": {"field": "coverage_text", "type": "nominal"}, "x": {"value": 5}, "y": {"value": 5}}, "transform": [{"calculate": "((datum.y_test >= datum.y_pred_low) & (datum.y_test <= datum.y_pred_upp)) ? 'Yes' : 'No'", "as": "y_label"}, {"aggregate": [{"op": "mean", "field": "coverage", "as": "coverage"}], "groupby": ["strategy"]}, {"calculate": "'Coverage: ' + format((datum['coverage'] * 100), '.1f') + '%' + ' (target = 95%)'", "as": "coverage_text"}]}, {"data": {"name": "data-c3f858f1e5385c6846b0f9563e88b2bc"}, "mark": {"type": "text", "align": "left", "baseline": "top"}, "encoding": {"text": {"field": "width_text", "type": "nominal"}, "x": {"value": 5}, "y": {"value": 20}}, "transform": [{"calculate": "((datum.y_test >= datum.y_pred_low) & (datum.y_test <= datum.y_pred_upp)) ? 'Yes' : 'No'", "as": "y_label"}, {"aggregate": [{"op": "mean", "field": "width", "as": "width"}], "groupby": ["strategy"]}, {"calculate": "'Interval Width: ' + format(datum['width'], '$,d')", "as": "width_text"}]}], "height": 225, "title": "Quantile Regression Forest (QRF)", "width": 300}, {"layer": [{"mark": {"type": "bar", "width": 2}, "encoding": {"color": {"condition": {"param": "param_7", "value": "#e0f2ff"}, "value": "lightgray"}, "opacity": {"condition": {"param": "param_7", "value": 0.8}, "value": 0}, "tooltip": [{"field": "y_test", "format": "$,d", "title": "True Price", "type": "quantitative"}, {"field": "y_pred", "format": "$,d", "title": "Predicted Price", "type": "quantitative"}, {"field": "y_pred_low", "format": "$,d", "title": "Predicted Lower Price", "type": "quantitative"}, {"field": "y_pred_upp", "format": "$,d", "title": "Predicted Upper Price", "type": "quantitative"}, {"field": "y_label", "title": "Within Interval", "type": "nominal"}], "x": {"field": "y_pred", "scale": {"domain": [60000, 500000], "padding": 0}, "title": "", "type": "quantitative"}, "y": {"field": "y_pred_low", "scale": {"clamp": true, "domain": [60000, 500000], "padding": 0}, "title": "", "type": "quantitative"}, "y2": {"field": "y_pred_upp", "title": null}}, "transform": [{"calculate": "((datum.y_test >= datum.y_pred_low) & (datum.y_test <= datum.y_pred_upp)) ? 'Yes' : 'No'", "as": "y_label"}]}, {"mark": {"type": "tick", "orient": "horizontal", "thickness": 1, "width": 5}, "encoding": {"color": {"value": "#006aff"}, "opacity": {"condition": {"param": "param_7", "value": 0.4}, "value": 0}, "x": {"field": "y_pred", "title": "", "type": "quantitative"}, "y": {"field": "y_pred_low", "scale": {"clamp": true}, "title": "", "type": "quantitative"}}, "transform": [{"calculate": "((datum.y_test >= datum.y_pred_low) & (datum.y_test <= datum.y_pred_upp)) ? 'Yes' : 'No'", "as": "y_label"}]}, {"mark": {"type": "tick", "orient": "horizontal", "thickness": 1, "width": 5}, "encoding": {"color": {"value": "#006aff"}, "opacity": {"condition": {"param": "param_7", "value": 0.4}, "value": 0}, "x": {"field": "y_pred", "title": "", "type": "quantitative"}, "y": {"field": "y_pred_upp", "scale": {"clamp": true}, "title": "", "type": "quantitative"}}, "transform": [{"calculate": "((datum.y_test >= datum.y_pred_low) & (datum.y_test <= datum.y_pred_upp)) ? 'Yes' : 'No'", "as": "y_label"}]}, {"mark": {"type": "circle", "size": 30}, "encoding": {"color": {"condition": {"param": "param_7", "field": "y_label", "scale": {"domain": ["Yes", "No"], "range": ["#f2a619", "red"]}, "title": "Within Interval", "type": "nominal"}, "value": "lightgray"}, "opacity": {"condition": {"param": "param_7", "value": 1}, "value": 0}, "tooltip": [{"field": "y_test", "format": "$,d", "title": "True Price", "type": "quantitative"}, {"field": "y_pred", "format": "$,d", "title": "Predicted Price", "type": "quantitative"}, {"field": "y_pred_low", "format": "$,d", "title": "Predicted Lower Price", "type": "quantitative"}, {"field": "y_pred_upp", "format": "$,d", "title": "Predicted Upper Price", "type": "quantitative"}, {"field": "y_label", "title": "Within Interval", "type": "nominal"}], "x": {"axis": {"format": "$,d"}, "field": "y_pred", "scale": {"domain": [60000, 500000], "nice": false}, "title": "True Prices", "type": "quantitative"}, "y": {"axis": {"format": "$,d"}, "field": "y_test", "scale": {"domain": [60000, 500000], "nice": false}, "title": "Predicted Prices", "type": "quantitative"}}, "name": "view_6", "transform": [{"calculate": "((datum.y_test >= datum.y_pred_low) & (datum.y_test <= datum.y_pred_upp)) ? 'Yes' : 'No'", "as": "y_label"}]}, {"data": {"name": "data-ecc6ebcad6dfda466c706ea03422d0b0"}, "mark": {"type": "line", "color": "black", "opacity": 0.4, "strokeDash": [2, 2]}, "encoding": {"x": {"field": "var1", "type": "quantitative"}, "y": {"field": "var2", "type": "quantitative"}}}, {"data": {"name": "data-4aec50c53b1ad528ff6f04fd3fe051e0"}, "mark": {"type": "text", "align": "left", "baseline": "top"}, "encoding": {"text": {"field": "coverage_text", "type": "nominal"}, "x": {"value": 5}, "y": {"value": 5}}, "transform": [{"calculate": "((datum.y_test >= datum.y_pred_low) & (datum.y_test <= datum.y_pred_upp)) ? 'Yes' : 'No'", "as": "y_label"}, {"aggregate": [{"op": "mean", "field": "coverage", "as": "coverage"}], "groupby": ["strategy"]}, {"calculate": "'Coverage: ' + format((datum['coverage'] * 100), '.1f') + '%' + ' (target = 95%)'", "as": "coverage_text"}]}, {"data": {"name": "data-4aec50c53b1ad528ff6f04fd3fe051e0"}, "mark": {"type": "text", "align": "left", "baseline": "top"}, "encoding": {"text": {"field": "width_text", "type": "nominal"}, "x": {"value": 5}, "y": {"value": 20}}, "transform": [{"calculate": "((datum.y_test >= datum.y_pred_low) & (datum.y_test <= datum.y_pred_upp)) ? 'Yes' : 'No'", "as": "y_label"}, {"aggregate": [{"op": "mean", "field": "width", "as": "width"}], "groupby": ["strategy"]}, {"calculate": "'Interval Width: ' + format(datum['width'], '$,d')", "as": "width_text"}]}], "data": {"name": "data-4aec50c53b1ad528ff6f04fd3fe051e0"}, "height": 225, "title": "Conformalized Quantile Regression (CQR)", "width": 300}], "data": {"name": "data-c3f858f1e5385c6846b0f9563e88b2bc"}, "params": [{"name": "param_6", "select": {"type": "point", "fields": ["y_label"]}, "bind": "legend", "views": ["view_5"]}, {"name": "param_7", "select": {"type": "point", "fields": ["y_label"]}, "bind": "legend", "views": ["view_6"]}], "$schema": "https://vega.github.io/schema/vega-lite/v5.16.3.json", "datasets": {"data-c3f858f1e5385c6846b0f9563e88b2bc": [{"y_test": 60000.0, "y_pred": 171105.0, "y_pred_low": 83300.0, "y_pred_upp": 335700.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 72000.0, "y_pred": 107937.0, "y_pred_low": 71300.0, "y_pred_upp": 203149.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 73500.0, "y_pred": 141104.99999999997, "y_pred_low": 75000.0, "y_pred_upp": 362317.49999999924, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 75000.0, "y_pred": 121705.99999999999, "y_pred_low": 70617.5, "y_pred_upp": 187500.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 76100.0, "y_pred": 83749.0, "y_pred_low": 73687.5, "y_pred_upp": 96267.49999999985, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 76400.0, "y_pred": 105575.0, "y_pred_low": 79842.5, "y_pred_upp": 183662.49999999985, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 81300.0, "y_pred": 150224.99999999997, "y_pred_low": 71300.0, "y_pred_upp": 405400.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 81800.0, "y_pred": 84399.99999999999, "y_pred_low": 72500.0, "y_pred_upp": 92015.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 82100.0, "y_pred": 84211.99999999999, "y_pred_low": 70000.0, "y_pred_upp": 95200.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 83400.0, "y_pred": 113729.00000000001, "y_pred_low": 74100.0, "y_pred_upp": 182819.99999999985, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 84400.0, "y_pred": 107531.0, "y_pred_low": 67500.0, "y_pred_upp": 174602.49999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 85300.0, "y_pred": 101813.99999999999, "y_pred_low": 75000.0, "y_pred_upp": 179200.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 88800.0, "y_pred": 92826.00000000001, "y_pred_low": 74100.0, "y_pred_upp": 107299.99999999993, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 88900.0, "y_pred": 89269.00000000001, "y_pred_low": 72500.0, "y_pred_upp": 101009.99999999996, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 90500.0, "y_pred": 85789.0, "y_pred_low": 73260.0, "y_pred_upp": 102387.49999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 91400.0, "y_pred": 86178.99999999999, "y_pred_low": 73260.0, "y_pred_upp": 96700.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 91800.0, "y_pred": 95981.0, "y_pred_low": 82400.0, "y_pred_upp": 134857.49999999985, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 93800.0, "y_pred": 125791.99999999999, "y_pred_low": 87500.0, "y_pred_upp": 171400.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 95000.0, "y_pred": 89263.99999999997, "y_pred_low": 70000.0, "y_pred_upp": 159392.49999999965, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 97200.0, "y_pred": 119967.0, "y_pred_low": 74100.0, "y_pred_upp": 231300.00000000003, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 97300.0, "y_pred": 114221.00000000001, "y_pred_low": 80000.0, "y_pred_upp": 147257.49999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 98200.0, "y_pred": 94220.99999999999, "y_pred_low": 71300.0, "y_pred_upp": 142434.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 99700.0, "y_pred": 133413.99999999997, "y_pred_low": 90492.5, "y_pred_upp": 180469.99999999988, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 100000.0, "y_pred": 94888.0, "y_pred_low": 83282.49999999999, "y_pred_upp": 119919.99999999985, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 100400.0, "y_pred": 121184.0, "y_pred_low": 80000.0, "y_pred_upp": 171349.99999999985, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 102000.0, "y_pred": 91503.00000000003, "y_pred_low": 79700.0, "y_pred_upp": 100000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 107000.0, "y_pred": 93344.0, "y_pred_low": 77567.5, "y_pred_upp": 100000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 107900.0, "y_pred": 168431.99999999997, "y_pred_low": 80747.5, "y_pred_upp": 489600.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 107900.0, "y_pred": 117967.0, "y_pred_low": 83472.5, "y_pred_upp": 174525.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 109400.00000000001, "y_pred": 163441.0, "y_pred_low": 118000.0, "y_pred_upp": 208100.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 111700.0, "y_pred": 119914.00000000001, "y_pred_low": 76572.5, "y_pred_upp": 187364.99999999977, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 112500.0, "y_pred": 113234.00000000001, "y_pred_low": 69305.0, "y_pred_upp": 160812.49999999977, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 112500.0, "y_pred": 161444.0, "y_pred_low": 95200.0, "y_pred_upp": 271397.4999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 112799.99999999999, "y_pred": 130051.99999999999, "y_pred_low": 103820.0, "y_pred_upp": 275000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 113900.0, "y_pred": 167705.00000000003, "y_pred_low": 97200.0, "y_pred_upp": 257799.99999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 116100.0, "y_pred": 168533.00000000003, "y_pred_low": 71300.0, "y_pred_upp": 489600.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 116700.0, "y_pred": 128847.0, "y_pred_low": 97500.0, "y_pred_upp": 179200.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 118800.0, "y_pred": 153641.01999999996, "y_pred_low": 83300.0, "y_pred_upp": 243027.49999999974, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 119400.0, "y_pred": 119107.00000000001, "y_pred_low": 80300.0, "y_pred_upp": 138800.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 120100.0, "y_pred": 150923.00000000003, "y_pred_low": 105295.0, "y_pred_upp": 211977.4999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 122000.0, "y_pred": 134041.0, "y_pred_low": 94300.0, "y_pred_upp": 194835.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 122500.00000000001, "y_pred": 149020.03, "y_pred_low": 95500.0, "y_pred_upp": 438915.5249999989, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 122800.0, "y_pred": 222609.99999999997, "y_pred_low": 80000.0, "y_pred_upp": 489600.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 123500.00000000001, "y_pred": 126438.0, "y_pred_low": 98635.0, "y_pred_upp": 171400.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 125000.0, "y_pred": 270215.99999999994, "y_pred_low": 114012.5, "y_pred_upp": 405400.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 126600.0, "y_pred": 134491.0, "y_pred_low": 72630.0, "y_pred_upp": 187500.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 126899.99999999999, "y_pred": 195943.00000000006, "y_pred_low": 109700.0, "y_pred_upp": 323302.49999999977, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 129200.0, "y_pred": 96869.0, "y_pred_low": 67500.0, "y_pred_upp": 132500.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 129500.0, "y_pred": 151848.0, "y_pred_low": 107600.0, "y_pred_upp": 200924.99999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 132900.0, "y_pred": 140501.99999999997, "y_pred_low": 97742.5, "y_pred_upp": 175000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 134900.0, "y_pred": 168749.0, "y_pred_low": 98135.0, "y_pred_upp": 275000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 135300.0, "y_pred": 167590.0, "y_pred_low": 101495.0, "y_pred_upp": 245400.00000000003, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 136700.0, "y_pred": 150194.00000000003, "y_pred_low": 105557.5, "y_pred_upp": 199167.4999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 137500.0, "y_pred": 129276.01000000002, "y_pred_low": 74910.0, "y_pred_upp": 187500.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 137500.0, "y_pred": 119418.0, "y_pred_low": 102200.0, "y_pred_upp": 141700.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 137500.0, "y_pred": 156355.99999999997, "y_pred_low": 89255.0, "y_pred_upp": 250000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 138800.0, "y_pred": 241181.02999999994, "y_pred_low": 106300.0, "y_pred_upp": 428750.52499999874, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 139400.0, "y_pred": 116998.0, "y_pred_low": 94607.5, "y_pred_upp": 145427.49999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 140600.0, "y_pred": 125789.0, "y_pred_low": 87140.0, "y_pred_upp": 171400.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 144800.0, "y_pred": 158872.0, "y_pred_low": 101600.0, "y_pred_upp": 218100.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 147900.0, "y_pred": 160564.0, "y_pred_low": 94037.5, "y_pred_upp": 218100.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 148900.0, "y_pred": 171921.0, "y_pred_low": 144900.0, "y_pred_upp": 218100.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 149700.0, "y_pred": 168381.0, "y_pred_low": 113560.00000000001, "y_pred_upp": 199287.49999999988, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 150500.0, "y_pred": 169733.0, "y_pred_low": 146555.0, "y_pred_upp": 218100.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 150800.0, "y_pred": 132293.00000000003, "y_pred_low": 85977.5, "y_pred_upp": 187500.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 151400.0, "y_pred": 220166.00000000003, "y_pred_low": 168100.0, "y_pred_upp": 261400.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 152500.0, "y_pred": 177321.00000000003, "y_pred_low": 91850.0, "y_pred_upp": 285984.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 153100.0, "y_pred": 226714.01999999996, "y_pred_low": 140600.0, "y_pred_upp": 350000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 154000.0, "y_pred": 161815.00000000003, "y_pred_low": 125582.5, "y_pred_upp": 218100.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 154300.0, "y_pred": 156946.0, "y_pred_low": 89300.0, "y_pred_upp": 182100.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 156300.0, "y_pred": 196425.0, "y_pred_low": 156900.0, "y_pred_upp": 256000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 156500.0, "y_pred": 166163.00000000003, "y_pred_low": 130762.5, "y_pred_upp": 252284.99999999977, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 156600.0, "y_pred": 170488.0, "y_pred_low": 150000.0, "y_pred_upp": 251249.99999999956, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 156900.0, "y_pred": 163193.0, "y_pred_low": 127682.50000000001, "y_pred_upp": 215484.9999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 157300.0, "y_pred": 217560.00000000003, "y_pred_low": 153515.0, "y_pred_upp": 350000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 158200.0, "y_pred": 181597.0, "y_pred_low": 149600.0, "y_pred_upp": 225000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 158300.0, "y_pred": 155272.0, "y_pred_low": 85100.0, "y_pred_upp": 205600.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 158300.0, "y_pred": 190248.00000000003, "y_pred_low": 93567.5, "y_pred_upp": 300577.5, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 159200.0, "y_pred": 178513.0, "y_pred_low": 105040.0, "y_pred_upp": 250000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 159600.0, "y_pred": 172031.0, "y_pred_low": 150000.0, "y_pred_upp": 230994.99999999983, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 160700.0, "y_pred": 173976.99999999997, "y_pred_low": 135800.0, "y_pred_upp": 246187.5, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 161700.0, "y_pred": 186693.99999999997, "y_pred_low": 136397.50000000003, "y_pred_upp": 245400.00000000003, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 161900.0, "y_pred": 179063.0, "y_pred_low": 109700.0, "y_pred_upp": 279804.9999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 162500.0, "y_pred": 189110.00000000003, "y_pred_low": 135400.0, "y_pred_upp": 317532.4999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 162500.0, "y_pred": 147535.01, "y_pred_low": 69305.0, "y_pred_upp": 350000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 162500.0, "y_pred": 255067.99999999997, "y_pred_low": 138355.0, "y_pred_upp": 350000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 163900.0, "y_pred": 235192.00000000003, "y_pred_low": 138355.0, "y_pred_upp": 350000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 164300.0, "y_pred": 186393.99999999997, "y_pred_low": 109700.0, "y_pred_upp": 229100.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 164300.0, "y_pred": 187356.99999999997, "y_pred_low": 133070.0, "y_pred_upp": 277152.49999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 164700.0, "y_pred": 170918.0, "y_pred_low": 146100.0, "y_pred_upp": 213817.49999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 165400.0, "y_pred": 176349.99999999997, "y_pred_low": 153880.0, "y_pred_upp": 208504.99999999985, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 166300.0, "y_pred": 173661.0, "y_pred_low": 128735.0, "y_pred_upp": 215577.49999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 167100.0, "y_pred": 171746.99999999997, "y_pred_low": 135400.0, "y_pred_upp": 218100.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 167900.0, "y_pred": 191804.99999999997, "y_pred_low": 159747.5, "y_pred_upp": 225195.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 169600.0, "y_pred": 149514.99999999997, "y_pred_low": 80000.0, "y_pred_upp": 240000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 170000.0, "y_pred": 184947.99999999997, "y_pred_low": 83300.0, "y_pred_upp": 257799.99999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 170400.0, "y_pred": 154984.99999999994, "y_pred_low": 85100.0, "y_pred_upp": 219000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 171900.0, "y_pred": 174323.02000000002, "y_pred_low": 94465.0, "y_pred_upp": 251890.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 172800.0, "y_pred": 143207.0, "y_pred_low": 79160.00000000001, "y_pred_upp": 207900.00000000003, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 174100.0, "y_pred": 182451.00000000003, "y_pred_low": 157422.5, "y_pred_upp": 228459.99999999988, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 174100.0, "y_pred": 170976.0, "y_pred_low": 149790.0, "y_pred_upp": 218100.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 174200.0, "y_pred": 270272.9999999999, "y_pred_low": 166560.0, "y_pred_upp": 371525.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 176000.0, "y_pred": 183079.0, "y_pred_low": 149600.0, "y_pred_upp": 224620.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 178200.0, "y_pred": 208186.00000000003, "y_pred_low": 158000.0, "y_pred_upp": 317532.4999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 179300.0, "y_pred": 197912.99999999997, "y_pred_low": 139300.0, "y_pred_upp": 291074.99999999924, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 180900.0, "y_pred": 168552.0, "y_pred_low": 149030.0, "y_pred_upp": 195962.5, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 183100.0, "y_pred": 174060.00000000003, "y_pred_low": 137300.0, "y_pred_upp": 240507.4999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 183800.0, "y_pred": 255674.0, "y_pred_low": 177627.5, "y_pred_upp": 418017.49999999866, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 184100.0, "y_pred": 174960.00000000003, "y_pred_low": 109700.0, "y_pred_upp": 235900.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 184600.0, "y_pred": 182739.0, "y_pred_low": 135590.0, "y_pred_upp": 202112.49999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 185300.0, "y_pred": 182806.0, "y_pred_low": 146100.0, "y_pred_upp": 210300.00000000003, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 185600.0, "y_pred": 185742.00000000003, "y_pred_low": 140600.0, "y_pred_upp": 268800.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 186000.0, "y_pred": 200902.99999999997, "y_pred_low": 164582.5, "y_pred_upp": 242550.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 187100.0, "y_pred": 178691.0, "y_pred_low": 118000.0, "y_pred_upp": 277967.49999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 187500.0, "y_pred": 189502.99999999997, "y_pred_low": 165300.0, "y_pred_upp": 206800.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 188300.0, "y_pred": 234620.99999999997, "y_pred_low": 167750.0, "y_pred_upp": 350945.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 188900.0, "y_pred": 177024.0, "y_pred_low": 144375.0, "y_pred_upp": 228005.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 190400.0, "y_pred": 196992.0, "y_pred_low": 150600.0, "y_pred_upp": 241852.50000000003, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 190400.0, "y_pred": 198341.0, "y_pred_low": 168800.0, "y_pred_upp": 261977.49999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 191000.0, "y_pred": 209118.0, "y_pred_low": 156775.0, "y_pred_upp": 312167.4999999996, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 191100.0, "y_pred": 211906.00000000003, "y_pred_low": 165300.0, "y_pred_upp": 263400.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 192400.0, "y_pred": 260806.0, "y_pred_low": 193242.5, "y_pred_upp": 440784.9999999998, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 192600.0, "y_pred": 176888.0, "y_pred_low": 126299.99999999999, "y_pred_upp": 224982.49999999983, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 192600.0, "y_pred": 181525.99999999994, "y_pred_low": 151235.0, "y_pred_upp": 240232.49999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 192900.0, "y_pred": 179616.00000000003, "y_pred_low": 135705.0, "y_pred_upp": 208800.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 193100.0, "y_pred": 253425.00000000006, "y_pred_low": 181700.0, "y_pred_upp": 344789.9999999998, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 193800.0, "y_pred": 206332.0, "y_pred_low": 119750.0, "y_pred_upp": 257799.99999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 194700.0, "y_pred": 188381.0, "y_pred_low": 154569.99999999997, "y_pred_upp": 214627.4999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 197300.0, "y_pred": 191028.00000000003, "y_pred_low": 162990.0, "y_pred_upp": 219200.00000000003, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 197500.0, "y_pred": 182717.00000000003, "y_pred_low": 120760.0, "y_pred_upp": 231217.5, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 198100.0, "y_pred": 194667.0, "y_pred_low": 138012.5, "y_pred_upp": 258412.49999999988, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 198200.0, "y_pred": 193163.00000000003, "y_pred_low": 143400.0, "y_pred_upp": 247739.99999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 200000.0, "y_pred": 179906.0, "y_pred_low": 119400.0, "y_pred_upp": 253582.49999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 200199.99999999997, "y_pred": 227949.99999999997, "y_pred_low": 141532.5, "y_pred_upp": 375000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 202700.0, "y_pred": 202770.00000000003, "y_pred_low": 100000.0, "y_pred_upp": 271300.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 206199.99999999997, "y_pred": 228067.00000000003, "y_pred_low": 111874.99999999999, "y_pred_upp": 299200.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 206300.00000000003, "y_pred": 234164.00000000003, "y_pred_low": 75700.0, "y_pred_upp": 489600.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 206300.00000000003, "y_pred": 214137.00000000003, "y_pred_low": 167330.0, "y_pred_upp": 254199.99999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 209200.0, "y_pred": 198621.99999999997, "y_pred_low": 158000.0, "y_pred_upp": 233970.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 209400.0, "y_pred": 191886.0, "y_pred_low": 159510.00000000003, "y_pred_upp": 228082.4999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 209500.00000000003, "y_pred": 184936.0, "y_pred_low": 146100.0, "y_pred_upp": 291700.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 210200.0, "y_pred": 229082.0, "y_pred_low": 156402.5, "y_pred_upp": 337902.49999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 210200.0, "y_pred": 214801.99999999997, "y_pred_low": 184400.0, "y_pred_upp": 266077.49999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 211300.0, "y_pred": 222906.00000000006, "y_pred_low": 175500.0, "y_pred_upp": 281662.4999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 211500.00000000003, "y_pred": 143533.99999999997, "y_pred_low": 83300.0, "y_pred_upp": 225457.4999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 213400.0, "y_pred": 211461.0, "y_pred_low": 150945.0, "y_pred_upp": 268012.4999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 213800.0, "y_pred": 216574.0, "y_pred_low": 138355.0, "y_pred_upp": 341639.9999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 214500.0, "y_pred": 225764.00000000003, "y_pred_low": 177900.0, "y_pred_upp": 287600.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 215300.0, "y_pred": 211003.99999999997, "y_pred_low": 144570.0, "y_pred_upp": 273997.49999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 215700.0, "y_pred": 218688.00000000003, "y_pred_low": 123072.5, "y_pred_upp": 338900.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 216699.99999999997, "y_pred": 197241.00000000006, "y_pred_low": 109700.0, "y_pred_upp": 256322.49999999988, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 216800.00000000003, "y_pred": 237770.00000000003, "y_pred_low": 201222.5, "y_pred_upp": 287125.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 218200.0, "y_pred": 247285.99999999997, "y_pred_low": 180725.0, "y_pred_upp": 309600.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 218900.0, "y_pred": 198363.0, "y_pred_low": 119400.0, "y_pred_upp": 310279.9999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 219499.99999999997, "y_pred": 255338.00000000003, "y_pred_low": 204927.50000000003, "y_pred_upp": 354992.4999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 221300.0, "y_pred": 216663.0, "y_pred_low": 144800.0, "y_pred_upp": 287629.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 222000.00000000003, "y_pred": 211566.0, "y_pred_low": 165945.0, "y_pred_upp": 276439.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 223200.00000000003, "y_pred": 217149.0, "y_pred_low": 179955.0, "y_pred_upp": 262757.4999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 223400.0, "y_pred": 217598.0, "y_pred_low": 177600.0, "y_pred_upp": 256000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 224200.0, "y_pred": 231874.0, "y_pred_low": 179300.0, "y_pred_upp": 300197.5, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 225800.0, "y_pred": 213075.00000000003, "y_pred_low": 137730.0, "y_pred_upp": 280197.49999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 227700.0, "y_pred": 254475.0, "y_pred_low": 179547.5, "y_pred_upp": 356142.49999999965, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 228100.0, "y_pred": 163004.00000000003, "y_pred_low": 80700.0, "y_pred_upp": 270312.4999999995, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 230600.0, "y_pred": 198964.00000000003, "y_pred_low": 169200.0, "y_pred_upp": 265179.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 231599.99999999997, "y_pred": 210880.0, "y_pred_low": 167152.5, "y_pred_upp": 260029.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 231800.0, "y_pred": 261120.99999999997, "y_pred_low": 218682.49999999997, "y_pred_upp": 314645.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 232600.0, "y_pred": 242450.99999999997, "y_pred_low": 194940.0, "y_pred_upp": 291700.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 233300.00000000003, "y_pred": 245251.99999999997, "y_pred_low": 158057.5, "y_pred_upp": 375000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 234100.00000000003, "y_pred": 244970.00000000003, "y_pred_low": 183297.5, "y_pred_upp": 337379.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 234400.0, "y_pred": 245502.99999999997, "y_pred_low": 205510.0, "y_pred_upp": 298224.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 234500.00000000003, "y_pred": 236288.0, "y_pred_low": 159540.0, "y_pred_upp": 283942.4999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 236000.0, "y_pred": 223378.0, "y_pred_low": 178100.0, "y_pred_upp": 332400.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 238499.99999999997, "y_pred": 170239.0, "y_pred_low": 83300.0, "y_pred_upp": 244307.5, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 240700.0, "y_pred": 323301.0000000001, "y_pred_low": 255900.00000000003, "y_pred_upp": 454094.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 241000.0, "y_pred": 194666.0, "y_pred_low": 97200.0, "y_pred_upp": 271057.4999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 241400.00000000003, "y_pred": 244301.00000000006, "y_pred_low": 200562.50000000003, "y_pred_upp": 309600.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 242200.00000000003, "y_pred": 198350.0, "y_pred_low": 157895.0, "y_pred_upp": 301100.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 243500.0, "y_pred": 194558.00000000003, "y_pred_low": 141900.0, "y_pred_upp": 235100.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 245500.0, "y_pred": 220633.0, "y_pred_low": 163917.5, "y_pred_upp": 290100.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 246200.00000000003, "y_pred": 228927.0, "y_pred_low": 75700.0, "y_pred_upp": 342200.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 247000.00000000003, "y_pred": 235063.00000000006, "y_pred_low": 206500.0, "y_pred_upp": 274682.4999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 247100.0, "y_pred": 268244.0, "y_pred_low": 156300.0, "y_pred_upp": 380229.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 247600.0, "y_pred": 236506.00000000003, "y_pred_low": 207370.0, "y_pred_upp": 283814.9999999998, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 248600.00000000003, "y_pred": 225412.0, "y_pred_low": 164400.0, "y_pred_upp": 335300.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 248900.0, "y_pred": 230356.99999999997, "y_pred_low": 184705.0, "y_pred_upp": 332400.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 250000.0, "y_pred": 358750.0100000001, "y_pred_low": 75000.0, "y_pred_upp": 466099.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 251900.0, "y_pred": 244534.99999999994, "y_pred_low": 178660.0, "y_pred_upp": 336035.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 252800.0, "y_pred": 300544.00000000006, "y_pred_low": 196900.0, "y_pred_upp": 430600.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 253500.0, "y_pred": 257858.0, "y_pred_low": 188180.0, "y_pred_upp": 324499.9999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 254400.0, "y_pred": 244766.00000000003, "y_pred_low": 202090.0, "y_pred_upp": 295600.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 254900.0, "y_pred": 259337.00000000006, "y_pred_low": 168800.0, "y_pred_upp": 430600.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 257300.0, "y_pred": 258146.0000000001, "y_pred_low": 217300.0, "y_pred_upp": 310184.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 257399.99999999997, "y_pred": 241315.00000000003, "y_pred_low": 180725.0, "y_pred_upp": 338900.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 259200.0, "y_pred": 299947.99999999994, "y_pred_low": 246270.0, "y_pred_upp": 345107.4999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 259400.0, "y_pred": 244611.0, "y_pred_low": 199370.0, "y_pred_upp": 275000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 259600.0, "y_pred": 254863.00000000003, "y_pred_low": 168800.0, "y_pred_upp": 430809.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 259600.0, "y_pred": 242994.99999999997, "y_pred_low": 191700.0, "y_pred_upp": 289815.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 261100.00000000003, "y_pred": 264509.0, "y_pred_low": 183297.5, "y_pred_upp": 340632.5, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 261300.0, "y_pred": 243179.0, "y_pred_low": 191700.0, "y_pred_upp": 284900.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 269700.0, "y_pred": 229276.0, "y_pred_low": 149832.5, "y_pred_upp": 337544.9999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 270600.0, "y_pred": 302431.0000000001, "y_pred_low": 232200.0, "y_pred_upp": 430809.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 272900.0, "y_pred": 224498.0, "y_pred_low": 183455.0, "y_pred_upp": 315719.99999999953, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 273800.0, "y_pred": 267402.0, "y_pred_low": 197087.5, "y_pred_upp": 362404.9999999998, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 275000.0, "y_pred": 167930.0, "y_pred_low": 83300.0, "y_pred_upp": 237500.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 275700.0, "y_pred": 258117.99999999997, "y_pred_low": 218590.00000000003, "y_pred_upp": 309600.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 281500.0, "y_pred": 230213.0, "y_pred_low": 179300.0, "y_pred_upp": 326714.9999999997, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 282500.0, "y_pred": 259081.00000000003, "y_pred_low": 207450.0, "y_pred_upp": 356000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 282500.0, "y_pred": 342517.99999999994, "y_pred_low": 247900.0, "y_pred_upp": 424994.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 283500.0, "y_pred": 264522.0, "y_pred_low": 230540.0, "y_pred_upp": 303067.49999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 284800.0, "y_pred": 331173.0, "y_pred_low": 285400.0, "y_pred_upp": 393200.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 287500.0, "y_pred": 234860.00000000003, "y_pred_low": 183455.0, "y_pred_upp": 287629.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 287600.0, "y_pred": 247511.99999999994, "y_pred_low": 196200.0, "y_pred_upp": 306112.49999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 289900.0, "y_pred": 287333.0, "y_pred_low": 225372.49999999997, "y_pred_upp": 378614.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 291700.0, "y_pred": 260988.0, "y_pred_low": 156300.0, "y_pred_upp": 374572.5, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 291900.0, "y_pred": 333905.00000000006, "y_pred_low": 262900.0, "y_pred_upp": 411500.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 292700.0, "y_pred": 300916.0, "y_pred_low": 189842.5, "y_pred_upp": 390707.5, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 293200.0, "y_pred": 226068.00000000003, "y_pred_low": 151950.0, "y_pred_upp": 332400.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 295200.0, "y_pred": 263672.00000000006, "y_pred_low": 206500.0, "y_pred_upp": 335132.49999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 298900.0, "y_pred": 263818.0, "y_pred_low": 187800.0, "y_pred_upp": 370384.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 315600.0, "y_pred": 257358.00000000003, "y_pred_low": 172600.0, "y_pred_upp": 346832.4999999998, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 323500.0, "y_pred": 338515.0, "y_pred_low": 273700.0, "y_pred_upp": 396034.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 325900.0, "y_pred": 315784.00000000006, "y_pred_low": 246010.00000000003, "y_pred_upp": 368757.5, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 330000.0, "y_pred": 311611.00000000006, "y_pred_low": 196165.0, "y_pred_upp": 457800.00000000006, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 331600.0, "y_pred": 198778.99999999997, "y_pred_low": 154830.0, "y_pred_upp": 281249.9999999998, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 332400.0, "y_pred": 328604.99999999994, "y_pred_low": 285400.0, "y_pred_upp": 389800.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 332500.0, "y_pred": 235543.99999999997, "y_pred_low": 182300.0, "y_pred_upp": 294592.4999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 334100.0, "y_pred": 332685.00999999995, "y_pred_low": 259600.0, "y_pred_upp": 471600.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 335000.0, "y_pred": 341430.9999999999, "y_pred_low": 211580.0, "y_pred_upp": 457800.00000000006, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 340000.0, "y_pred": 359916.00000000006, "y_pred_low": 208500.0, "y_pred_upp": 483300.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 340400.0, "y_pred": 323193.0, "y_pred_low": 244100.00000000003, "y_pred_upp": 411500.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 346800.0, "y_pred": 315675.0, "y_pred_low": 232200.0, "y_pred_upp": 405400.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 350000.0, "y_pred": 215596.0, "y_pred_low": 109500.0, "y_pred_upp": 335700.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 352100.0, "y_pred": 404310.01, "y_pred_low": 310480.0, "y_pred_upp": 468987.5, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 352400.0, "y_pred": 292446.0, "y_pred_low": 208500.0, "y_pred_upp": 371620.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 352900.0, "y_pred": 295784.0, "y_pred_low": 215710.00000000003, "y_pred_upp": 396769.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 353900.0, "y_pred": 247798.99999999997, "y_pred_low": 157400.0, "y_pred_upp": 343207.4999999999, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 362900.0, "y_pred": 357760.00000000006, "y_pred_low": 282392.5, "y_pred_upp": 417500.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 370900.0, "y_pred": 359860.0, "y_pred_low": 311950.0, "y_pred_upp": 398600.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 373600.0, "y_pred": 347757.99999999994, "y_pred_low": 273700.0, "y_pred_upp": 398600.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 412500.0, "y_pred": 324954.0, "y_pred_low": 255900.00000000003, "y_pred_upp": 389800.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 415299.99999999994, "y_pred": 346771.00000000006, "y_pred_low": 261922.5, "y_pred_upp": 395369.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 430500.0, "y_pred": 437566.18000000005, "y_pred_low": 354667.5, "y_pred_upp": 500000.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 446200.0, "y_pred": 360752.99999999994, "y_pred_low": 301977.5, "y_pred_upp": 409187.4999999998, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 456300.0, "y_pred": 289154.00000000006, "y_pred_low": 167750.0, "y_pred_upp": 442052.4999999992, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 500000.99999999994, "y_pred": 428066.10000000003, "y_pred_low": 373667.5, "y_pred_upp": 500000.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 500000.99999999994, "y_pred": 403018.02000000014, "y_pred_low": 332600.0, "y_pred_upp": 473804.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 500000.99999999994, "y_pred": 416666.12, "y_pred_low": 348700.0, "y_pred_upp": 500000.99999999994, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 500000.99999999994, "y_pred": 388914.0, "y_pred_low": 333142.50000000006, "y_pred_upp": 471600.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 500000.99999999994, "y_pred": 155914.99999999997, "y_pred_low": 79302.50000000001, "y_pred_upp": 350000.0, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}, {"y_test": 500000.99999999994, "y_pred": 403320.0, "y_pred_low": 330307.5, "y_pred_upp": 468987.5, "strategy": "qrf", "coverage": 0.9, "width": 138263.02619999993}], "data-ecc6ebcad6dfda466c706ea03422d0b0": [{"var1": 60000, "var2": 60000}, {"var1": 500000, "var2": 500000}], "data-4aec50c53b1ad528ff6f04fd3fe051e0": [{"y_test": 60000.0, "y_pred": 184519.0, "y_pred_low": 73068.752, "y_pred_upp": 344331.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 72000.0, "y_pred": 106087.00000000001, "y_pred_low": 69451.25199999998, "y_pred_upp": 283898.7479999993, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 73500.0, "y_pred": 127637.99999999999, "y_pred_low": 67468.752, "y_pred_upp": 300938.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 75000.0, "y_pred": 131845.03, "y_pred_low": 62343.751999999986, "y_pred_upp": 351446.7729999972, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 76100.0, "y_pred": 96798.0, "y_pred_low": 64968.751999999986, "y_pred_upp": 254833.74799999924, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 76400.0, "y_pred": 110695.00000000003, "y_pred_low": 72468.752, "y_pred_upp": 179853.7479999999, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 81300.0, "y_pred": 123736.99999999999, "y_pred_low": 67468.752, "y_pred_upp": 322231.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 81800.0, "y_pred": 93169.99999999999, "y_pred_low": 64968.751999999986, "y_pred_upp": 142086.24799999993, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 82100.0, "y_pred": 94288.0, "y_pred_low": 64968.751999999986, "y_pred_upp": 164081.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 83400.0, "y_pred": 130662.02000000002, "y_pred_low": 72168.752, "y_pred_upp": 283168.747999999, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 84400.0, "y_pred": 112016.0, "y_pred_low": 59968.75199999999, "y_pred_upp": 195031.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 85300.0, "y_pred": 107822.00000000001, "y_pred_low": 67468.752, "y_pred_upp": 195031.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 88800.0, "y_pred": 94044.0, "y_pred_low": 74981.252, "y_pred_upp": 142418.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 88900.0, "y_pred": 93908.99999999999, "y_pred_low": 66156.25199999998, "y_pred_upp": 133831.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 90500.0, "y_pred": 95924.00000000001, "y_pred_low": 72168.752, "y_pred_upp": 142418.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 91400.0, "y_pred": 96174.0, "y_pred_low": 74268.75199999998, "y_pred_upp": 134908.748, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 91800.0, "y_pred": 101962.00000000001, "y_pred_low": 72468.752, "y_pred_upp": 158423.74799999993, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 93800.0, "y_pred": 116150.0, "y_pred_low": 79968.752, "y_pred_upp": 187383.74799999985, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 95000.0, "y_pred": 113789.03, "y_pred_low": 64968.751999999986, "y_pred_upp": 349166.77299999713, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 97200.0, "y_pred": 135461.0, "y_pred_low": 72168.752, "y_pred_upp": 200701.24799999993, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 97300.0, "y_pred": 115748.0, "y_pred_low": 72468.752, "y_pred_upp": 152381.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 98200.0, "y_pred": 109026.0, "y_pred_low": 66156.25199999998, "y_pred_upp": 254833.74799999924, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 99700.0, "y_pred": 126139.0, "y_pred_low": 79968.752, "y_pred_upp": 166231.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 100000.0, "y_pred": 102721.0, "y_pred_low": 73878.752, "y_pred_upp": 164663.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 100400.0, "y_pred": 118757.0, "y_pred_low": 68168.752, "y_pred_upp": 214513.74799999982, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 102000.0, "y_pred": 99047.0, "y_pred_low": 77068.75199999998, "y_pred_upp": 171898.74799999958, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 107000.0, "y_pred": 103078.0, "y_pred_low": 75768.75199999998, "y_pred_upp": 166706.24799999993, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 107900.0, "y_pred": 144956.00000000003, "y_pred_low": 73168.752, "y_pred_upp": 346431.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 107900.0, "y_pred": 122857.00000000001, "y_pred_low": 77068.75199999998, "y_pred_upp": 195031.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 109400.00000000001, "y_pred": 149836.0, "y_pred_low": 73168.752, "y_pred_upp": 203031.24800000002, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 111700.0, "y_pred": 128339.0, "y_pred_low": 77153.752, "y_pred_upp": 378931.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 112500.0, "y_pred": 110392.0, "y_pred_low": 59968.75199999999, "y_pred_upp": 148738.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 112500.0, "y_pred": 181942.00999999998, "y_pred_low": 87668.75199999998, "y_pred_upp": 344331.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 112799.99999999999, "y_pred": 121552.99999999997, "y_pred_low": 75966.25199999998, "y_pred_upp": 313736.2479999992, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 113900.0, "y_pred": 177270.99999999997, "y_pred_low": 85306.25199999998, "y_pred_upp": 344331.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 116100.0, "y_pred": 142536.99999999997, "y_pred_low": 68168.752, "y_pred_upp": 346431.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 116700.0, "y_pred": 119287.00000000001, "y_pred_low": 91786.252, "y_pred_upp": 174131.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 118800.0, "y_pred": 213084.14, "y_pred_low": 81421.252, "y_pred_upp": 507532.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 119400.0, "y_pred": 119417.00000000001, "y_pred_low": 73268.752, "y_pred_upp": 150131.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 120100.0, "y_pred": 163081.0, "y_pred_low": 89011.25199999998, "y_pred_upp": 339931.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 122000.0, "y_pred": 130077.99999999999, "y_pred_low": 72468.752, "y_pred_upp": 194833.748, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 122500.00000000001, "y_pred": 106093.0, "y_pred_low": 67468.752, "y_pred_upp": 156358.7479999998, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 122800.0, "y_pred": 164975.00000000003, "y_pred_low": 72468.752, "y_pred_upp": 346431.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 123500.00000000001, "y_pred": 129545.99999999999, "y_pred_low": 86726.252, "y_pred_upp": 178931.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 125000.0, "y_pred": 277066.99999999994, "y_pred_low": 73068.752, "y_pred_upp": 382531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 126600.0, "y_pred": 131433.0, "y_pred_low": 71486.252, "y_pred_upp": 195031.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 126899.99999999999, "y_pred": 202986.00000000006, "y_pred_low": 127396.252, "y_pred_upp": 269776.2479999999, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 129200.0, "y_pred": 108434.00000000001, "y_pred_low": 59968.75199999999, "y_pred_upp": 187383.74799999985, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 129500.0, "y_pred": 161321.0, "y_pred_low": 86768.75199999998, "y_pred_upp": 285781.24799999903, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 132900.0, "y_pred": 146180.00000000003, "y_pred_low": 99968.75199999998, "y_pred_upp": 226331.24800000002, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 134900.0, "y_pred": 172505.99999999997, "y_pred_low": 78968.752, "y_pred_upp": 323853.7479999994, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 135300.0, "y_pred": 173968.0, "y_pred_low": 89643.752, "y_pred_upp": 239633.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 136700.0, "y_pred": 166898.00000000003, "y_pred_low": 108998.752, "y_pred_upp": 339931.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 137500.0, "y_pred": 142186.03999999998, "y_pred_low": 59968.75199999999, "y_pred_upp": 507532.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 137500.0, "y_pred": 116327.0, "y_pred_low": 73268.752, "y_pred_upp": 147531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 137500.0, "y_pred": 154746.0, "y_pred_low": 86923.752, "y_pred_upp": 229538.748, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 138800.0, "y_pred": 204300.01, "y_pred_low": 81421.252, "y_pred_upp": 357531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 139400.0, "y_pred": 114547.00000000001, "y_pred_low": 81768.752, "y_pred_upp": 160893.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 140600.0, "y_pred": 118280.99999999999, "y_pred_low": 79758.752, "y_pred_upp": 178931.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 144800.0, "y_pred": 160012.0, "y_pred_low": 72753.752, "y_pred_upp": 226331.24800000002, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 147900.0, "y_pred": 169470.00000000003, "y_pred_low": 72468.752, "y_pred_upp": 228568.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 148900.0, "y_pred": 176714.0, "y_pred_low": 134273.752, "y_pred_upp": 228778.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 149700.0, "y_pred": 176232.0, "y_pred_low": 134803.752, "y_pred_upp": 213496.24799999988, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 150500.0, "y_pred": 183037.0, "y_pred_low": 128866.25200000001, "y_pred_upp": 241288.74799999985, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 150800.0, "y_pred": 126722.0, "y_pred_low": 79968.752, "y_pred_upp": 187383.74799999985, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 151400.0, "y_pred": 215934.00000000006, "y_pred_low": 144511.25199999998, "y_pred_upp": 282166.2479999999, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 152500.0, "y_pred": 180152.99999999997, "y_pred_low": 95898.752, "y_pred_upp": 297631.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 153100.0, "y_pred": 204900.0, "y_pred_low": 81896.25199999998, "y_pred_upp": 344331.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 154000.0, "y_pred": 164302.00000000003, "y_pred_low": 87018.752, "y_pred_upp": 225631.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 154300.0, "y_pred": 162001.00000000003, "y_pred_low": 81438.752, "y_pred_upp": 225631.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 156300.0, "y_pred": 198247.00000000003, "y_pred_low": 142468.752, "y_pred_upp": 242831.24800000002, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 156500.0, "y_pred": 178095.99999999997, "y_pred_low": 116301.252, "y_pred_upp": 339931.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 156600.0, "y_pred": 175883.0, "y_pred_low": 139791.252, "y_pred_upp": 229938.748, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 156900.0, "y_pred": 169217.00000000003, "y_pred_low": 104361.252, "y_pred_upp": 312031.24799999944, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 157300.0, "y_pred": 200155.0, "y_pred_low": 143466.252, "y_pred_upp": 344331.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 158200.0, "y_pred": 182942.00000000003, "y_pred_low": 145746.252, "y_pred_upp": 225631.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 158300.0, "y_pred": 155750.02, "y_pred_low": 76386.252, "y_pred_upp": 207668.7479999999, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 158300.0, "y_pred": 205930.0, "y_pred_low": 73068.752, "y_pred_upp": 324541.24799999973, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 159200.0, "y_pred": 202021.0, "y_pred_low": 101368.752, "y_pred_upp": 344331.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 159600.0, "y_pred": 178571.0, "y_pred_low": 144511.25199999998, "y_pred_upp": 228731.24800000002, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 160700.0, "y_pred": 174362.0, "y_pred_low": 81428.752, "y_pred_upp": 256613.74799999982, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 161700.0, "y_pred": 184357.0, "y_pred_low": 107971.25200000002, "y_pred_upp": 278831.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 161900.0, "y_pred": 200535.00000000003, "y_pred_low": 110568.75200000001, "y_pred_upp": 339931.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 162500.0, "y_pred": 191686.0, "y_pred_low": 127868.75200000001, "y_pred_upp": 339931.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 162500.0, "y_pred": 167174.12, "y_pred_low": 59968.75199999999, "y_pred_upp": 507532.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 162500.0, "y_pred": 237370.0, "y_pred_low": 136058.752, "y_pred_upp": 339931.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 163900.0, "y_pred": 193083.0, "y_pred_low": 75768.75199999998, "y_pred_upp": 305476.24799999926, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 164300.0, "y_pred": 190763.00000000003, "y_pred_low": 137268.752, "y_pred_upp": 227328.748, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 164300.0, "y_pred": 183723.0, "y_pred_low": 79628.752, "y_pred_upp": 279791.24799999985, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 164700.0, "y_pred": 171422.0, "y_pred_low": 146768.75199999998, "y_pred_upp": 224681.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 165400.0, "y_pred": 178258.00000000003, "y_pred_low": 144511.25199999998, "y_pred_upp": 216623.748, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 166300.0, "y_pred": 180149.0, "y_pred_low": 110468.752, "y_pred_upp": 252338.74799999976, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 167100.0, "y_pred": 172549.0, "y_pred_low": 118733.75200000001, "y_pred_upp": 233696.24799999988, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 167900.0, "y_pred": 186980.0, "y_pred_low": 144568.75199999998, "y_pred_upp": 227243.748, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 169600.0, "y_pred": 164744.0, "y_pred_low": 68168.752, "y_pred_upp": 322231.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 170000.0, "y_pred": 196823.00000000003, "y_pred_low": 95383.752, "y_pred_upp": 276331.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 170400.0, "y_pred": 153254.02, "y_pred_low": 75768.75199999998, "y_pred_upp": 198496.24799999993, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 171900.0, "y_pred": 216135.14, "y_pred_low": 81421.252, "y_pred_upp": 507532.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 172800.0, "y_pred": 142187.99999999997, "y_pred_low": 70211.252, "y_pred_upp": 346431.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 174100.0, "y_pred": 186838.00000000003, "y_pred_low": 149368.752, "y_pred_upp": 242831.24800000002, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 174100.0, "y_pred": 184408.00000000003, "y_pred_low": 138268.752, "y_pred_upp": 292763.74799999915, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 174200.0, "y_pred": 260238.0, "y_pred_low": 148768.75199999998, "y_pred_upp": 397031.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 176000.0, "y_pred": 179903.0, "y_pred_low": 110468.752, "y_pred_upp": 225998.748, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 178200.0, "y_pred": 206374.0, "y_pred_low": 152063.752, "y_pred_upp": 279078.7479999995, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 179300.0, "y_pred": 212790.99999999994, "y_pred_low": 153218.752, "y_pred_upp": 339931.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 180900.0, "y_pred": 177725.0, "y_pred_low": 124613.752, "y_pred_upp": 228778.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 183100.0, "y_pred": 174437.00000000003, "y_pred_low": 122933.75200000001, "y_pred_upp": 248523.748, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 183800.0, "y_pred": 232357.0, "y_pred_low": 160906.252, "y_pred_upp": 280931.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 184100.0, "y_pred": 192408.00000000006, "y_pred_low": 125068.75200000001, "y_pred_upp": 278831.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 184600.0, "y_pred": 178148.00000000003, "y_pred_low": 118768.752, "y_pred_upp": 226208.748, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 185300.0, "y_pred": 184449.00000000003, "y_pred_low": 149986.252, "y_pred_upp": 236846.2479999999, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 185600.0, "y_pred": 195564.00000000003, "y_pred_low": 133436.252, "y_pred_upp": 319678.74799999956, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 186000.0, "y_pred": 206459.0, "y_pred_low": 148003.752, "y_pred_upp": 263831.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 187100.0, "y_pred": 179314.99999999997, "y_pred_low": 108998.752, "y_pred_upp": 339931.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 187500.0, "y_pred": 190482.0, "y_pred_low": 151716.252, "y_pred_upp": 247531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 188300.0, "y_pred": 223343.00000000003, "y_pred_low": 157273.752, "y_pred_upp": 306931.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 188900.0, "y_pred": 179728.99999999997, "y_pred_low": 127501.252, "y_pred_upp": 230446.24799999993, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 190400.0, "y_pred": 188725.0, "y_pred_low": 142311.25199999998, "y_pred_upp": 249431.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 190400.0, "y_pred": 197749.99999999994, "y_pred_low": 118768.752, "y_pred_upp": 286631.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 191000.0, "y_pred": 200088.0, "y_pred_low": 148768.75199999998, "y_pred_upp": 272231.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 191100.0, "y_pred": 216453.00000000006, "y_pred_low": 151716.252, "y_pred_upp": 349731.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 192400.0, "y_pred": 247622.0, "y_pred_low": 181291.252, "y_pred_upp": 382531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 192600.0, "y_pred": 175120.99999999997, "y_pred_low": 72468.752, "y_pred_upp": 292406.2479999999, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 192600.0, "y_pred": 183669.00000000003, "y_pred_low": 147718.752, "y_pred_upp": 246243.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 192900.0, "y_pred": 173288.00000000003, "y_pred_low": 118768.752, "y_pred_upp": 226398.748, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 193100.0, "y_pred": 251801.00000000003, "y_pred_low": 174168.752, "y_pred_upp": 339931.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 193800.0, "y_pred": 203953.99999999997, "y_pred_low": 87668.75199999998, "y_pred_upp": 344331.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 194700.0, "y_pred": 184473.00000000003, "y_pred_low": 114411.252, "y_pred_upp": 238648.74799999982, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 197300.0, "y_pred": 187564.0, "y_pred_low": 136153.752, "y_pred_upp": 227781.24800000002, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 197500.0, "y_pred": 192025.0, "y_pred_low": 132808.752, "y_pred_upp": 278831.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 198100.0, "y_pred": 184761.0, "y_pred_low": 108788.752, "y_pred_upp": 280108.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 198200.0, "y_pred": 191716.0, "y_pred_low": 135868.75199999998, "y_pred_upp": 277638.7479999999, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 200000.0, "y_pred": 185756.99999999997, "y_pred_low": 73068.752, "y_pred_upp": 284331.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 200199.99999999997, "y_pred": 239979.00000000003, "y_pred_low": 159268.75199999998, "y_pred_upp": 382531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 202700.0, "y_pred": 216067.0, "y_pred_low": 136268.75199999998, "y_pred_upp": 280931.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 206199.99999999997, "y_pred": 230907.00000000003, "y_pred_low": 157536.25199999998, "y_pred_upp": 362763.74799999973, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 206300.00000000003, "y_pred": 195864.01000000004, "y_pred_low": 68168.752, "y_pred_upp": 378931.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 206300.00000000003, "y_pred": 203765.99999999997, "y_pred_low": 125068.75200000001, "y_pred_upp": 269973.74799999985, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 209200.0, "y_pred": 209581.00000000003, "y_pred_low": 155468.75199999998, "y_pred_upp": 297288.74799999985, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 209400.0, "y_pred": 195949.00000000003, "y_pred_low": 139791.252, "y_pred_upp": 229376.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 209500.00000000003, "y_pred": 195715.00000000003, "y_pred_low": 123091.252, "y_pred_upp": 339931.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 210200.0, "y_pred": 218024.0, "y_pred_low": 136796.252, "y_pred_upp": 292431.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 210200.0, "y_pred": 208519.0, "y_pred_low": 145203.752, "y_pred_upp": 283476.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 211300.0, "y_pred": 215735.99999999997, "y_pred_low": 173168.75199999998, "y_pred_upp": 277231.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 211500.00000000003, "y_pred": 164125.00999999998, "y_pred_low": 75768.75199999998, "y_pred_upp": 344331.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 213400.0, "y_pred": 215147.99999999997, "y_pred_low": 138268.752, "y_pred_upp": 339931.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 213800.0, "y_pred": 212272.00000000003, "y_pred_low": 108941.252, "y_pred_upp": 339931.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 214500.0, "y_pred": 221697.0, "y_pred_low": 163073.752, "y_pred_upp": 295131.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 215300.0, "y_pred": 203728.0, "y_pred_low": 125068.75200000001, "y_pred_upp": 283476.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 215700.0, "y_pred": 188361.99999999997, "y_pred_low": 88868.75199999998, "y_pred_upp": 334936.2479999998, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 216699.99999999997, "y_pred": 191385.00000000003, "y_pred_low": 112798.75200000001, "y_pred_upp": 247331.24800000002, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 216800.00000000003, "y_pred": 224080.0, "y_pred_low": 181196.252, "y_pred_upp": 295131.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 218200.0, "y_pred": 228351.99999999997, "y_pred_low": 139791.252, "y_pred_upp": 346431.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 218900.0, "y_pred": 198722.00000000003, "y_pred_low": 73068.752, "y_pred_upp": 350676.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 219499.99999999997, "y_pred": 252358.00000000003, "y_pred_low": 198026.252, "y_pred_upp": 337731.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 221300.0, "y_pred": 214187.0, "y_pred_low": 136058.752, "y_pred_upp": 346431.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 222000.00000000003, "y_pred": 210299.0, "y_pred_low": 171698.752, "y_pred_upp": 259508.74799999993, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 223200.00000000003, "y_pred": 221461.0, "y_pred_low": 165168.752, "y_pred_upp": 252213.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 223400.0, "y_pred": 219190.0, "y_pred_low": 173168.75199999998, "y_pred_upp": 242831.24800000002, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 224200.0, "y_pred": 224512.0, "y_pred_low": 136743.752, "y_pred_upp": 345433.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 225800.0, "y_pred": 212499.99999999994, "y_pred_low": 125068.75200000001, "y_pred_upp": 360721.2479999997, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 227700.0, "y_pred": 267950.00000000006, "y_pred_low": 169391.252, "y_pred_upp": 382531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 228100.0, "y_pred": 165409.00000000003, "y_pred_low": 72753.752, "y_pred_upp": 329813.7479999998, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 230600.0, "y_pred": 196277.0, "y_pred_low": 154838.75199999998, "y_pred_upp": 247631.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 231599.99999999997, "y_pred": 210740.99999999997, "y_pred_low": 154106.252, "y_pred_upp": 271601.2479999999, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 231800.0, "y_pred": 249625.01, "y_pred_low": 190568.752, "y_pred_upp": 323461.24799999973, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 232600.0, "y_pred": 227616.0, "y_pred_low": 181933.75199999998, "y_pred_upp": 295131.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 233300.00000000003, "y_pred": 258028.99999999994, "y_pred_low": 136468.752, "y_pred_upp": 382531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 234100.00000000003, "y_pred": 234312.00000000003, "y_pred_low": 181001.252, "y_pred_upp": 279268.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 234400.0, "y_pred": 238042.0, "y_pred_low": 193928.752, "y_pred_upp": 268653.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 234500.00000000003, "y_pred": 215713.00000000003, "y_pred_low": 140213.75199999998, "y_pred_upp": 317811.24799999944, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 236000.0, "y_pred": 221782.0, "y_pred_low": 174168.752, "y_pred_upp": 324541.24799999973, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 238499.99999999997, "y_pred": 204461.0, "y_pred_low": 75768.75199999998, "y_pred_upp": 382531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 240700.0, "y_pred": 326086.0, "y_pred_low": 266168.75200000004, "y_pred_upp": 468871.24799999985, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 241000.0, "y_pred": 190292.0, "y_pred_low": 89668.75199999998, "y_pred_upp": 272651.2479999998, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 241400.00000000003, "y_pred": 231620.00000000003, "y_pred_low": 205181.25199999998, "y_pred_upp": 270353.74799999985, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 242200.00000000003, "y_pred": 201175.00000000006, "y_pred_low": 155468.75199999998, "y_pred_upp": 243146.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 243500.0, "y_pred": 189749.00000000003, "y_pred_low": 140263.752, "y_pred_upp": 234531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 245500.0, "y_pred": 211987.0, "y_pred_low": 135868.75199999998, "y_pred_upp": 339733.74799999926, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 246200.00000000003, "y_pred": 226762.0, "y_pred_low": 103563.75200000001, "y_pred_upp": 349731.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 247000.00000000003, "y_pred": 232397.0, "y_pred_low": 183953.75199999998, "y_pred_upp": 295131.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 247100.0, "y_pred": 240267.0, "y_pred_low": 73068.752, "y_pred_upp": 382931.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 247600.0, "y_pred": 230568.99999999997, "y_pred_low": 197378.752, "y_pred_upp": 277231.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 248600.00000000003, "y_pred": 233616.0, "y_pred_low": 161268.75199999998, "y_pred_upp": 322231.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 248900.0, "y_pred": 248050.99999999997, "y_pred_low": 173643.752, "y_pred_upp": 360406.2479999997, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 250000.0, "y_pred": 362950.00000000006, "y_pred_low": 266168.75200000004, "y_pred_upp": 457531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 251900.0, "y_pred": 246993.99999999997, "y_pred_low": 160338.752, "y_pred_upp": 349731.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 252800.0, "y_pred": 280315.00000000006, "y_pred_low": 179393.752, "y_pred_upp": 350248.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 253500.0, "y_pred": 261592.0, "y_pred_low": 188633.752, "y_pred_upp": 344231.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 254400.0, "y_pred": 232801.00000000003, "y_pred_low": 166921.25199999998, "y_pred_upp": 276398.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 254900.0, "y_pred": 251764.0, "y_pred_low": 165068.752, "y_pred_upp": 333203.7479999998, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 257300.0, "y_pred": 244560.00000000006, "y_pred_low": 194558.752, "y_pred_upp": 301956.2479999999, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 257399.99999999997, "y_pred": 222975.0, "y_pred_low": 162053.752, "y_pred_upp": 320781.24799999956, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 259200.0, "y_pred": 324060.99999999994, "y_pred_low": 245558.75199999998, "y_pred_upp": 425208.74799999956, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 259400.0, "y_pred": 236294.00000000006, "y_pred_low": 174768.752, "y_pred_upp": 282531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 259600.0, "y_pred": 235144.00000000003, "y_pred_low": 161268.75199999998, "y_pred_upp": 295131.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 259600.0, "y_pred": 225273.0, "y_pred_low": 136058.752, "y_pred_upp": 295161.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 261100.00000000003, "y_pred": 224750.0, "y_pred_low": 154491.252, "y_pred_upp": 308076.24799999973, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 261300.0, "y_pred": 240064.0, "y_pred_low": 171768.75199999998, "y_pred_upp": 311448.7479999998, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 269700.0, "y_pred": 209053.99999999997, "y_pred_low": 132771.252, "y_pred_upp": 349731.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 270600.0, "y_pred": 313325.0, "y_pred_low": 243051.252, "y_pred_upp": 397031.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 272900.0, "y_pred": 229093.00000000003, "y_pred_low": 149191.252, "y_pred_upp": 346431.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 273800.0, "y_pred": 258294.99999999994, "y_pred_low": 175968.752, "y_pred_upp": 397031.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 275000.0, "y_pred": 190679.0, "y_pred_low": 75768.75199999998, "y_pred_upp": 349731.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 275700.0, "y_pred": 243535.99999999997, "y_pred_low": 178486.25199999998, "y_pred_upp": 292431.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 281500.0, "y_pred": 211329.99999999997, "y_pred_low": 166158.75199999998, "y_pred_upp": 348163.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 282500.0, "y_pred": 323391.0, "y_pred_low": 221886.252, "y_pred_upp": 426331.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 282500.0, "y_pred": 323145.0, "y_pred_low": 277868.75200000004, "y_pred_upp": 397331.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 283500.0, "y_pred": 241575.00000000006, "y_pred_low": 203243.75199999998, "y_pred_upp": 308131.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 284800.0, "y_pred": 342742.01, "y_pred_low": 277868.75200000004, "y_pred_upp": 397331.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 287500.0, "y_pred": 231684.0, "y_pred_low": 171768.75199999998, "y_pred_upp": 346431.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 287600.0, "y_pred": 237723.0, "y_pred_low": 177636.252, "y_pred_upp": 295131.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 289900.0, "y_pred": 292519.00000000006, "y_pred_low": 179863.752, "y_pred_upp": 397031.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 291700.0, "y_pred": 241387.99999999997, "y_pred_low": 142206.25199999998, "y_pred_upp": 379531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 291900.0, "y_pred": 330302.01, "y_pred_low": 249233.752, "y_pred_upp": 398013.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 292700.0, "y_pred": 303075.0, "y_pred_low": 169391.252, "y_pred_upp": 397031.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 293200.0, "y_pred": 254469.0, "y_pred_low": 173168.75199999998, "y_pred_upp": 382531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 295200.0, "y_pred": 260230.01000000004, "y_pred_low": 190306.252, "y_pred_upp": 377298.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 298900.0, "y_pred": 275270.00000000006, "y_pred_low": 176686.252, "y_pred_upp": 346616.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 315600.0, "y_pred": 256499.0, "y_pred_low": 154368.752, "y_pred_upp": 382531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 323500.0, "y_pred": 345709.0000000001, "y_pred_low": 266168.75200000004, "y_pred_upp": 398998.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 325900.0, "y_pred": 338785.00000000006, "y_pred_low": 266168.75200000004, "y_pred_upp": 398631.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 330000.0, "y_pred": 293049.0, "y_pred_low": 175946.252, "y_pred_upp": 392131.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 331600.0, "y_pred": 197307.00000000006, "y_pred_low": 127868.75200000001, "y_pred_upp": 339931.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 332400.0, "y_pred": 328930.01, "y_pred_low": 277868.75200000004, "y_pred_upp": 397331.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 332500.0, "y_pred": 245559.0, "y_pred_low": 149578.75199999998, "y_pred_upp": 334936.2479999998, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 334100.0, "y_pred": 342955.00000000006, "y_pred_low": 249233.752, "y_pred_upp": 479131.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 335000.0, "y_pred": 305983.0, "y_pred_low": 136468.752, "y_pred_upp": 397031.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 340000.0, "y_pred": 337917.0, "y_pred_low": 255931.25199999998, "y_pred_upp": 380726.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 340400.0, "y_pred": 347732.0, "y_pred_low": 233168.752, "y_pred_upp": 457531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 346800.0, "y_pred": 286501.0, "y_pred_low": 185973.752, "y_pred_upp": 379701.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 350000.0, "y_pred": 224256.0, "y_pred_low": 134168.752, "y_pred_upp": 279933.74799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 352100.0, "y_pred": 386298.0200000001, "y_pred_low": 295251.252, "y_pred_upp": 479131.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 352400.0, "y_pred": 337248.99999999994, "y_pred_low": 239581.25199999998, "y_pred_upp": 378731.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 352900.0, "y_pred": 289200.9999999999, "y_pred_low": 231676.252, "y_pred_upp": 344546.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 353900.0, "y_pred": 235173.0, "y_pred_low": 136268.75199999998, "y_pred_upp": 287728.7479999999, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 362900.0, "y_pred": 360993.00000000006, "y_pred_low": 266168.75200000004, "y_pred_upp": 402061.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 370900.0, "y_pred": 369863.00000000006, "y_pred_low": 330851.252, "y_pred_upp": 406131.2480000001, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 373600.0, "y_pred": 371032.0, "y_pred_low": 303968.75200000004, "y_pred_upp": 406131.2480000001, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 412500.0, "y_pred": 351789.00999999995, "y_pred_low": 277868.75200000004, "y_pred_upp": 457531.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 415299.99999999994, "y_pred": 343026.99999999994, "y_pred_low": 263368.752, "y_pred_upp": 399331.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 430500.0, "y_pred": 425862.1000000001, "y_pred_low": 349768.752, "y_pred_upp": 507532.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 446200.0, "y_pred": 358627.0, "y_pred_low": 323868.752, "y_pred_upp": 399331.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 456300.0, "y_pred": 277731.00000000006, "y_pred_low": 183868.75199999998, "y_pred_upp": 397031.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 500000.99999999994, "y_pred": 426170.17000000004, "y_pred_low": 343668.752, "y_pred_upp": 507532.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 500000.99999999994, "y_pred": 397099.0400000001, "y_pred_low": 298246.252, "y_pred_upp": 507532.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 500000.99999999994, "y_pred": 417150.22, "y_pred_low": 323868.752, "y_pred_upp": 507532.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 500000.99999999994, "y_pred": 388209.00000000006, "y_pred_low": 324771.25200000004, "y_pred_upp": 479131.248, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 500000.99999999994, "y_pred": 141564.06, "y_pred_low": 64968.751999999986, "y_pred_upp": 507532.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}, {"y_test": 500000.99999999994, "y_pred": 401817.10000000003, "y_pred_low": 323028.75200000004, "y_pred_upp": 507532.24799999996, "strategy": "cqr", "coverage": 0.952, "width": 167438.0501999999}]}};
var opt = {
"mode": "vega-lite",
"renderer": "canvas",
diff --git a/gallery/plot_quantile_extrapolation.html b/gallery/plot_quantile_extrapolation.html
index 06634c7..30e7939 100644
--- a/gallery/plot_quantile_extrapolation.html
+++ b/gallery/plot_quantile_extrapolation.html
@@ -402,18 +402,23 @@