Hi this is my plot created using plotly

Maunga Whau (Mt Eden) is one of about 50 volcanos in the Auckland volcanic field. This data set gives topographic information for Maunga Whau on a 10m by 10m grid.

suppressPackageStartupMessages(library(plotly))
## Warning: package 'plotly' was built under R version 4.0.2
fig <- plot_ly(z = ~volcano, colors = c("#E9EF15", "#EFA415", "#EF2615"))
fig <- fig %>% add_surface()

fig <- fig %>% layout(
    title = "Layout options in a 3d scatter plot",
    scene = list(
      xaxis = list(title = "Length"),
      yaxis = list(title = "Width"),
      zaxis = list(title = "Heigth")))
fig