Below is the toy example I have attempted. Is anything wrong with it?
library(plotly)
fig <- plot_ly(z = ~volcano)
fig <- fig %>% add_surface() %>%
layout(
xaxis = list(title = 'N'),
yaxis = list(title = 'R')
)
fig
Thanks for your time.
