Advertisement
Guest User

Untitled

a guest
Nov 14th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. p <- plot_ly(z = ~volcano) %>% add_surface(
  2. contours = list(
  3. z = list(
  4. show=TRUE,
  5. usecolormap=TRUE,
  6. highlightcolor="#ff0000",
  7. project=list(z=TRUE)
  8. )
  9. )
  10. ) %>%
  11. layout(
  12. scene = list(
  13. camera=list(
  14. eye = list(x=1.87, y=0.88, z=-0.64)
  15. )
  16. )
  17. )
  18.  
  19. embed_notebook(p)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement