2025-10-30

Slide 1: Basic Volcano Surface Plot 🌋

Welcome to my interactive presentation!

This first slide displays a basic 3D surface plot of the built-in R volcano dataset. You can click and drag to rotate the plot for different perspectives!

## Warning: package 'plotly' was built under R version 4.4.3
## Warning: package 'ggplot2' was built under R version 4.4.3

# Basic surface plot of the volcano data
plot_ly(z = ~volcano, type = "surface") %>%
  layout(title = "Basic 3D Volcano Surface (Drag to Rotate)")