[ENH] Plotting confidence intervals
See original GitHub issueIs your feature request related to a problem? Please describe.
Plotting confidence intervalls with the current plot function from sktime.utils.plotting import plot_series
is not well suitable in case all lines are very close, see picture.
Describe the solution you’d like
Plot like this would be great, with the points as an option ideally. The function could just receive the DataFrame pred_int
from y_pred, pred_int = model.predict(fh=fh, return_pred_int=True)
as an input so this is already well structured and named.
Issue Analytics
- State:
- Created 3 years ago
- Reactions:4
- Comments:17
Top Results From Across the Web
Scatter Plot with Confidence Intervals and Prediction Intervals
Confidence Intervals : Provide a view into the uncertainty when estimating the mean. Prediction Intervals: Account for variation in the Y values around...
Read more >Tutorial: Adding confidence bands to effect displays
To that end, this blog post demonstrates how you can add confidence bands to effect displays for multiple regression, logistic regression, ...
Read more >16.5 - Plotting Confidence Intervals - Preparing the Data
In the next example we'll use the function polygon() to show the 95% confidence interval around the means of some values (Since we're...
Read more >Error bar plot with bootstrap-based 95% confidence intervals ...
I have 10 groups of non-normal data, and I would like to generate a plot with the mean of each group and associated...
Read more >Constructing and plotting confidence intervals for means in R
Here we show how to calculate confidence intervals for sample means, and plot these intervals along with the raw data.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I’d love to take this on!
@aiexplorations
alpha = [0.95, 0.9, 0.5]
and loop 3 times over_fit()
andpredict()
.predict()
is returning apd.Series
and nopd.DataFrame
. A better solution could be to return the prediction also when doingpredict(return_pred_int=True)
. Or you can just merge the results ofpredict()
andpredict(return_pred_int=True)
?@fkiraly thanks for mentioning, I think for now I will rather continue with contributing to
sktime
😃