-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Overlay OOS datapoints in boxplot #306
Conversation
Looking at this code I think it's time to refactor it. Specifically,
Should happen inside the plotting function and only |
@twiecki df_weekly and df_monthly are now only defined by the plotting functions that require them. |
LGTM, thanks! |
@ahgnaw just noticed that we should probably add a legend as well explaining the red dots. |
import matplotlib as mpl
mpl.rcParams['legend.handlelength'] = 0 Perhaps using that instead in a Also, the monthly color red is a bit hard to read with the red markers. |
I like out-of-sample data. |
I think we'd rather switch the red color of the last bar. |
Sorry, I meant the actual fill color of the barplot, not the points. |
Perfect. |
Point markers are diamonds instead of crosses.