Use the given code below to answer the questions.
Hint: Insert a new code chunk below and type in the code, using the tq_get() function above. Replace the ticker symbol for Microsoft. You may find the ticker symbol for Microsoft from Yahoo Finance.
library(tidyverse) # for cleaning, plotting, etc library(tidyquant) # for financial analysis
There are seven columns.
The variables are X and Y. ## Q4 What type of data are they? What are other basic data types? Numeric, Character, and logical.
There are 1,023. ## Q6 What does the row represent? The row represents daily stock price.
Hint: Insert a new code chunk below and type in the code, using the ggplot() function above. For more information on the ggplot() function, refer to Ch2 Introduction to ggplot2 in one of our e-textbooks, Data Visualization with R.
``` ## Visualize stocks %>% ggplot(aes(x = date, y = close)) + geom_line()
Hint: Change message, warning, collapse, echo and results in the chunk options. Refer to the RMarkdown Reference Guide.