Question: REWRITE THIS CODE library(ggplot2) library(tidyr) # Transform data into long format for ggplot df_long % select(period, aapl_apple_inc, hon_honeywell_inc) %>% gather(key = company, value = stock_price,
REWRITE THIS CODE library(ggplot2) library(tidyr) # Transform data into long format for ggplot df_long <- df %>% select(period, aapl_apple_inc, hon_honeywell_inc) %>% gather(key = "company", value = "stock_price", -period) # Create line plot p <- ggplot(df_long, aes(x = period, y = stock_price, color = company)) + geom_line() + labs(x = "Period", y = "Stock Price", title = "Time Series of AAPL and HON Stock Prices") + theme_minimal() # Save the plot as an image ggsave("time_series_p
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
