01/11/2020

Objective

Create a webpage presentation using R markdown that features a plot created with plotly. Host your webpage on either GitHub Pages, R Pubs or NeoCities. Your webpage must contain the date that you created the document, and it must contain a plot created with plotly.

Date

## [1] "01 November, 2020"

Plot of EuStockmarkets data of diffrent stock indexes.

We are going top use EuStockMarkets data to plot the time series plotting of prices for different indexes.

Plot

plot_ly(stocks,x=~time,y=~price,color=~index,type="scatter",mode="markers") %>%
  layout(title = "Stocks Data")