Plotly Presentation

Monisha

30-06-2024

Interactive Plot

Below is an interactive plot created with the Plotly package in R.

# Create a sample Plotly plot
data <- data.frame(
  x = rnorm(100),
  y = rnorm(100)
)

plot_ly(data, x = ~x, y = ~y, type = 'scatter', mode = 'markers')