Welcome to My Interactive Plotly Page

This page features a Plotly interactive plot created on September 16, 2025.
Explore the plot below!


# Creating example data
set.seed(123)
df <- data.frame(
  x = rnorm(100),
  y = rnorm(100)
)

# Generating Plotly plot
plot_ly(df, x = ~x, y = ~y, type = 'scatter', mode = 'markers') %>%
  layout(title = "Sample Scatter Plot",
         xaxis = list(title = "X Axis"),
         yaxis = list(title = "Y Axis"))