You are evaluating the performance of two stocks, Microsoft and Apple, for future investment.

Q1 Import stock prices of Microsoft and Apple for the last 20 years.

Hint: Add group_by(symbol) at the end of the code so that calculations below will be done per stock.

Q2 Describe the first observation (first row) using all variables.

The first row has the symbol of the company, the date, open stock price, high stock price, low stock price, closing stock price, volume and adjusted. In the first row Microsoft opened its stock at 38.9. It reached a high of 39.8 and A LOW OF 38.8. Microsoft closed at 39.8.

Q3 Create a line chart for adjusted closing prices of both stocks.

Hint: Use ggplot2::facet_wrap. Refer to the ggplot2 cheatsheet. See the section for Faceting.

Q4 Calculate yearly returns, and save the result under returns_yearly.

Hint: Take the adjusted variable from Stocks, and calculate yearly returns using tq_transmute(), instead of tq_mutate(), which is used when periodicity changes. Another difference between the two is that tq_transmute() returns only newly-created columns while tq_mutate() adds new columns to existing variables.

Q5 Create a boxplot for returns of both stocks.

Hint: Refer to the ggplot2 cheatsheet. Look for geom_boxplot under Two Variables. Note that the discrete variable should be mapped to the x-axis and the continuous variable to the y-axis.

Q6 For Which of the two stocks is the typical yearly return expected to be higher?

Hint: Discuss your answer in terms of the median in the boxplot you created in Q5. Google “Interpreting boxplots in R” to find the information you need.

Apples yearly return will be higher than Microsoft. Apples median in the boxplot is higher than Microsofts median which results in Apple having a higher yearly return.

Q7 Which of the two stocks is expected to be riskier?

Hint: Discuss your answer in terms of the interquartile range (the middle 50%) of the boxplot you created in Q5. Apple would be risker than Microsoft because it has a smaller interquartile range. Also, Apple has more whiskers outside the middle 50% compared to Microsoft.

Q8. Hide both the code and the results of the code on the webpage.

Hint: Change echo and results in the chunk options. The published webpage should display charts.

Q9. Display the title and your name correctly at the top of the webpage.

Q10. Use the correct slug.