Developing Data Product - R Markdown and Plotly

2025-06-23

Overview

Create a web page presentation using R Markdown that features a plot created with Plotly.

Does the web page feature a date and is this date less than two months before the date that you’re grading this assignment?

Is the web page a presentation and does it feature an interactive plot that appears to have been created with Plotly?

Development of the project

Date of creation

date()
## [1] "Mon Jun 23 12:04:26 2025"

Plot with plotly

data(iris)

fig <- plot_ly(iris, x = ~Sepal.Length, y = ~Petal.Length, z = ~Petal.Width, color = ~Species) %>% 
    add_markers() %>% 
    layout(scene = list(xaxis = list(title = 'sepal_length'),
                        yaxis = list(title = 'petal_length'),
                        zaxis = list(title = 'petal_width')))

fig