library(BatchGetSymbols) tickers <- c('AAPL', 'MSFT', 'AMZN', 'GOOG') df_stocks <- BatchGetSymbols(tickers = tickers, first.date = Sys.Date() - 500, last.date = Sys.Date())[[2]] p <- ggplot(df_stocks, aes(x = ret.adjusted.prices)) + geom_histogram() + facet_wrap(~ticker) print(p) # save in temp folder my_file <- file.path(tempdir(), 'histograms.png') ggsave(filename = my_file, plot = p)
# none my_answers <- rep(0, 5)
For the previous data, present the histogram of the returns of the different stocks in different panels and save the result in a file called 'histograms.png'
.
extype: string
exsolution: r mchoice2string(c(TRUE, FALSE, FALSE, FALSE, FALSE), single = TRUE)
exname: "function 01"
exshuffle: TRUE
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.