Presentation and Plotly

Khushi Vedagarbham
12-08-2020

Plotly in Presentation

library(plotly)
fig <- plot_ly(
  x = c("giraffes", "orangutans", "monkeys"),
  y = c(20, 14, 23),
  name = "SF Zoo",
  type = "bar"
)

plot of chunk unnamed-chunk-2

If the plot doesn't show up