Created
May 28, 2022 17:15
-
-
Save alexhallam/bc9a386d07f7ef1d07488f2f47ac4064 to your computer and use it in GitHub Desktop.
Naive plot
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
theme_set(theme_538) | |
palette = ["#000000", "#ee1d52"] | |
df_actuals_forecasts_n = pd.concat([df_APPLE, df_n]) | |
p = ( | |
ggplot(df_actuals_forecasts_n, aes(x="ds", y="y")) | |
+ geom_line(aes(y = 'y'), color = palette[0]) | |
+ geom_point(aes(y = 'y_sim'), color = palette[1], size = 0.1, alpha = 0.1) | |
+ scale_x_datetime(breaks=date_breaks("1 month")) | |
+ theme(axis_text_x=element_text(angle=45)) | |
+ xlab("") | |
+ ggtitle("Stock Price (Naive)") | |
+ scale_color_manual(palette) | |
) | |
p |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment