Research Grafana how tool for create dashboard for view metric and her confidence intervals.
Prepare data frame and import to PostgreSQL.
CREATE TABLE public.rnd_ci (
datetime TIMESTAMP,
yhat_lower float,
yhat_upper float,
yhat float,
y float
);
Create dashboard use PostgreSQL data source
SELECT
datetime AS "time",
yhat_lower,
yhat_upper,
yhat,
y
FROM rnd_ds
WHERE
$__timeFilter(ds) AND
use Time series panel
But I want to create this variant
How create this variant dashboard?
Assuming what you want is to fill area between upper and lower graphs:
yhat_upper
Graph styles > Fill below to
yhat_lower
.