This is a simple web presentation created using R
Markdown.
It includes today’s date and an interactive Plotly
plot, as required.
library(plotly)
# Simple dataset
x <- 1:10
y <- x^2
fig <- plot_ly(
x = x,
y = y,
type = "scatter",
mode = "lines+markers",
name = "Square Function"
)
fig